mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 03:25:12 +01:00
Seemingly fix a bug in utils.ts
This commit is contained in:
parent
cd9fe360a4
commit
aa9839ee40
@ -206,12 +206,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;
|
||||
}
|
||||
return NOT_DONE;
|
||||
});
|
||||
if (!matched) {
|
||||
throw new StorageError("Value not found");
|
||||
|
Loading…
Reference in New Issue
Block a user