commit d0bedb83a42cfe2bc000cd810187454d108ee42b
parent 28245f986d32180fd9815ab7af62edf2e42a1fed
Author: Florian Dold <florian@dold.me>
Date: Sat, 18 Jul 2026 16:46:39 +0200
fix missing await
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts
@@ -895,7 +895,7 @@ async function recoverStoredBackup(
const { name } = req;
const backupsDb = await openStoredBackupsDatabase(wex.ws.idbFactory);
const bd = await backupsDb.runAllStoresReadWriteTx({}, async (tx) => {
- const backupMeta = tx.backupMeta.get(name);
+ const backupMeta = await tx.backupMeta.get(name);
if (!backupMeta) {
throw Error("backup not found");
}