taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit d98c1b09c737b8cc1f71b48e1f5b4598fa93db78
parent 6cea1f7c5b6ea356870df460e9e40c7dcb67ca2d
Author: Florian Dold <florian.dold@gmail.com>
Date:   Mon, 26 Aug 2019 03:39:58 +0200

idb: fix bug in index iteration

Diffstat:
Mpackages/idb-bridge/package.json | 2+-
Mpackages/idb-bridge/src/MemoryBackend.ts | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git 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 @@ -1076,6 +1076,7 @@ export class MemoryBackend implements Backend { const res = indexData.nextHigherPair(indexPos); if (res) { indexEntry = res[1]; + indexPos = indexEntry.indexKey; } }