commit ac9bb0cbed6232d962e4f2e8f2d9c63192e89501
parent 88aae39824d51624a050297728034ed606606272
Author: Florian Dold <florian@dold.me>
Date: Sat, 18 Jul 2026 17:13:15 +0200
fix ignored key in ResultStream.next()
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-wallet-core/src/query.ts b/packages/taler-wallet-core/src/query.ts
@@ -271,7 +271,7 @@ class ResultStream<T> {
throw Error("assertion failed");
}
this.awaitingResult = true;
- cursor.continue();
+ cursor.continue(key);
}
await this.currentPromise;
if (this.gotCursorEnd) {