Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions adafruit_json_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ def next_value(self, endswith=None):
# start a string
if char == ord('"'):
in_string = True

# skipping any closing or opening character if in a string
# also skipping escaped characters (like quotes in string)
elif ignore_next:
ignore_next = False
elif char == ord("\\"):
Expand Down