Closed bakwc closed 3 weeks ago
Json was wrongly parsed as "{\"b\": \"b\", \"c\": [3, 2, 1]}". Now it's parsed correctly as {"b": "b", "c": [3, 2, 1]} (before there were additional quotes).
"{\"b\": \"b\", \"c\": [3, 2, 1]}"
{"b": "b", "c": [3, 2, 1]}
Json was wrongly parsed as
"{\"b\": \"b\", \"c\": [3, 2, 1]}"
. Now it's parsed correctly as{"b": "b", "c": [3, 2, 1]}
(before there were additional quotes).