mithlond
02/23/2023, 5:41 PMa["b"]
, the implicitly created b
struct is now being created w/ a case-sensitive key instead. 🤷bdw429s
02/24/2023, 4:15 AMbdw429s
02/24/2023, 4:16 AMmithlond
02/24/2023, 3:31 PMa = {}
a.b = 1
writedump(serializeJSON(a))
works just fine. But if you do
a = {}
a.b.c = 1
writedump(serializeJSON(a))
you can see that b
is lower-case, while C
correctly gets upper-cased. It's the b
that broke our code 🙁bdw429s
02/24/2023, 3:32 PMmithlond
02/24/2023, 3:34 PM