Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Merge branch 'main' into sqlite_chromium
  • Loading branch information
sydp committed Feb 4, 2026
commit ebcd5ab7d4f72586774c133810060df3a19a20d5
2 changes: 1 addition & 1 deletion dfindexeddb/indexeddb/chromium/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def RecursiveParse(depth: int) -> Tuple[int, definitions.IDBKeyType, Any]:
value = []
while True:
_, next_byte = decoder.PeekBytes(1)
if next_byte[0] == 0: # Sentinel
if next_byte[0] == definitions.SENTINEL:
decoder.ReadBytes(1)
break
_, _, item = RecursiveParse(depth + 1)
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.