You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, UTF-16 surrogate pairs are incorrectly decoded:
λ>Json.decode $Bytes.fromByteString "\"\\ud800\\udc00\""Right (String"\65533\65533")
-- should be
λ>Aeson.decode "\"\\ud800\\udc00\""::MaybeAeson.ValueJust (String"\65536")
Hi, UTF-16 surrogate pairs are incorrectly decoded:
And invalid sequences are emitted in some cases:
The text was updated successfully, but these errors were encountered: