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
* Added error callback to JsonListener. Reimplemented exception handling to use this callback with PROGMEM-backed strings which can be either short or long form
* Updated README.md with error callback
The
endDocument()
event never gets activated (even when using the included sample implementation code) due to a small bug in JsonStreamingParser.cppInside function JsonStreamingParser::endObject(), change line 277 from
if (stackPos == -1) {
to
if (stackPos == 0) {
The text was updated successfully, but these errors were encountered: