mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-24 12:04:57 +01:00
Seemingly fix a bug in utils.ts
This commit is contained in:
parent
0c80f78e9b
commit
a0017cb720
@ -201,12 +201,12 @@ export async function findStoreValue<T>(db: IDBDatabase, storeName: string, toCu
|
||||
const store = tx.objectStore(storeName);
|
||||
const cursor = await reqAsPromise(toCursor(store));
|
||||
let match;
|
||||
// @ts-ignore
|
||||
const matched = await iterateCursor<T>(cursor, (value) => {
|
||||
if (matchesValue(value)) {
|
||||
match = value;
|
||||
return true;
|
||||
return { done: true };
|
||||
}
|
||||
return { done: false };
|
||||
});
|
||||
if (!matched) {
|
||||
throw new StorageError("Value not found");
|
||||
|
Loading…
Reference in New Issue
Block a user