-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Brackets in values, kill parsing #3
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ran into this today, no fix as of yet, but we have a json feed which has occasionally brackets inside of the data sets.
Example
[ { "cLabel": "$69} for Carpet Cleaning for Three Rooms ($405 Value)." }, { "cLabel": "This is a good label" } ]
The first cLabel will think it's closed after
$69}
and not return a valid json object. I only ran into this with the curly brace, I would assume square brackets have the same issue looking at theSTATE_INSQUARE
condition inJSONCharInputReader::readChar()
I would think we can check if we're in a string when we're also checking for brackets?
The text was updated successfully, but these errors were encountered: