cnuernber/charred

Issue when parsing to string when data includes a set

domparry opened this issue · 6 comments

Hi Chris,

Ed has found an issue (ngrunwald/datasplash#123) with how strings are generated that is different from clojure.data and cheshire. For example:

{:id "15" :vals #{{:id "44" :views 4} {:id "492" :views 59}}}

from charred results in:

"{\"id\":\"15\",\"vals\":\"#{{:id \\\"492\\\", :views 59} {:id \\\"44\\\", :views 4}}\"}"

but from cheshire results in:

"{\"id\":\"15\",\"vals\":[{\"id\":\"492\",\"views\":59},{\"id\":\"44\",\"views\":4}]}"

and clojure.data results in:

"{\"id\":\"15\",\"vals\":[{\"id\":\"492\",\"views\":59},{\"id\":\"44\",\"views\":4}]}"

clojure.data and cheshire both handle the set as an array in json. Is there a way we can align with those libraries, even if it's through an option?

Forgot to mention, we're on charred 1.007 for the above.

Yes we should match them

Fixed 1.008.

Thanks so much! Also happy to submit a PR next time.

A PR would be very much appreciated :-).

Thanks so much guys!