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
Sending the parser @"1.0" does not result in a value because the parser does not know if more data is pending. Conversely @"true", @"null", and @\"test\"" work because the parser infers a complete object.
I believe the correct approach would be to add a [parser close] method which invokes yajl_complete_parse that can be executed when the end of the stream is reached.
The text was updated successfully, but these errors were encountered:
Sending the parser
@"1.0"
does not result in a value because the parser does not know if more data is pending. Conversely@"true"
,@"null"
, and@\"test\""
work because the parser infers a complete object.I believe the correct approach would be to add a
[parser close]
method which invokesyajl_complete_parse
that can be executed when the end of the stream is reached.The text was updated successfully, but these errors were encountered: