summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-26 03:39:58 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-26 03:39:58 +0200
commitd98c1b09c737b8cc1f71b48e1f5b4598fa93db78 (patch)
treea106982d7005a8ce6e2b6dc5fe735db4afd6f426 /packages
parent6cea1f7c5b6ea356870df460e9e40c7dcb67ca2d (diff)
downloadwallet-core-d98c1b09c737b8cc1f71b48e1f5b4598fa93db78.tar.gz
wallet-core-d98c1b09c737b8cc1f71b48e1f5b4598fa93db78.tar.bz2
wallet-core-d98c1b09c737b8cc1f71b48e1f5b4598fa93db78.zip
idb: fix bug in index iteration
Diffstat (limited to 'packages')
-rw-r--r--packages/idb-bridge/package.json2
-rw-r--r--packages/idb-bridge/src/MemoryBackend.ts1
2 files changed, 2 insertions, 1 deletions
diff --git a/packages/idb-bridge/package.json b/packages/idb-bridge/package.json
index 704bccf90..b8579b053 100644
--- a/packages/idb-bridge/package.json
+++ b/packages/idb-bridge/package.json
@@ -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",
diff --git a/packages/idb-bridge/src/MemoryBackend.ts b/packages/idb-bridge/src/MemoryBackend.ts
index 29c14dcd4..44da137ff 100644
--- a/packages/idb-bridge/src/MemoryBackend.ts
+++ b/packages/idb-bridge/src/MemoryBackend.ts
@@ -1076,6 +1076,7 @@ export class MemoryBackend implements Backend {
const res = indexData.nextHigherPair(indexPos);
if (res) {
indexEntry = res[1];
+ indexPos = indexEntry.indexKey;
}
}