We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parsing the following json "{"data":"{\"foo\":\"\u0026\""}""` raises "Crack::ParseError".
i.e.
require 'json' require 'crack' json = JSON.generate({"data"=>"{\"foo\":\"\\u0026\""}) JSON.parse(json) Crack::JSON.parse(json) > `rescue in parse': Invalid JSON string (Crack::ParseError)
This seems to be a problem with Psych not being able to handle well \u0026 character.
\u0026
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Parsing the following json "{"data":"{\"foo\":\"\u0026\""}""` raises "Crack::ParseError".
i.e.
This seems to be a problem with Psych not being able to handle well
\u0026
character.The text was updated successfully, but these errors were encountered: