buggregator / frontend

Buggregator UI
https://buggregator.dev/
12 stars 7 forks source link

Sending `true` (bool) using Symfony's VarDumper shows as `false` in bugregator UI #11

Closed FluffyDiscord closed 10 months ago

FluffyDiscord commented 1 year ago

image

image

Kreezag commented 11 months ago

Fixed in 662b7a0

Will be available in next release.

FluffyDiscord commented 11 months ago

Amazing, thank you

butschster commented 10 months ago

Problem is not solved( Here are correct payloads for true and false values

// true
"payload": {
    "type": "boolean",
    "value": "1"
},
// fakse
"payload": {
    "type": "boolean",
    "value": ""
},