Skip to content
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

Missing Null-Check #79

Open
starzlordb opened this issue Jul 17, 2023 · 0 comments
Open

Missing Null-Check #79

starzlordb opened this issue Jul 17, 2023 · 0 comments

Comments

@starzlordb
Copy link

While iterating an json array with null-elements I get an exception at this line:

return "</"+ (jsonObj.__prefix!=null? (jsonObj.__prefix+":"):"")+elementName+">";

My solution was to check
return "</"+ (jsonObj && jsonObj.__prefix!=null? (jsonObj.__prefix+":"):"")+elementName+">";

That worked like a charm.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant