idb: fix bug in index iteration
This commit is contained in:
parent
6cea1f7c5b
commit
d98c1b09c7
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "idb-bridge",
|
||||
"version": "0.0.8",
|
||||
"version": "0.0.9",
|
||||
"description": "IndexedDB implementation that uses SQLite3 as storage",
|
||||
"main": "./build/index.js",
|
||||
"types": "./build/index.d.ts",
|
||||
|
@ -1076,6 +1076,7 @@ export class MemoryBackend implements Backend {
|
||||
const res = indexData.nextHigherPair(indexPos);
|
||||
if (res) {
|
||||
indexEntry = res[1];
|
||||
indexPos = indexEntry.indexKey;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user