You are not logged in.
Pages: 1
I'm trying to use JSONDecode to consume some JSON with null values. If it encounters a null it breaks off the decoding due to this line in SynCommons.pas
36274 if (Value=nil) or not(EndOfObject in [',','}']) then
exit; // invalid item separator
Can it be changed to:
36274 if not(EndOfObject in [',','}']) then
exit; // invalid item separator
Offline
Should be fixed by http://synopse.info/fossil/info/cbb757a3bb
Thanks for the feedback.
Offline
Thanks
There's probably the same issue on lines
36307
36335
Offline
Pages: 1