aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/common.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-05-25 19:11:03 +0200
committerFlorian Dold <florian@dold.me>2023-05-25 19:11:03 +0200
commit8624d798b799d78a4b6393493a0750027094904d (patch)
tree2ed70812786bc7fc28efb1879e7d13b44a6c0d22 /packages/taler-wallet-core/src/operations/common.ts
parent485f7d3603bb3c9f563cf6c5fdaabdf474e9c4d5 (diff)
downloadwallet-core-8624d798b799d78a4b6393493a0750027094904d.tar.xz
wallet-core: fix issues with aborting deposits
Diffstat (limited to 'packages/taler-wallet-core/src/operations/common.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/common.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/common.ts b/packages/taler-wallet-core/src/operations/common.ts
index 5ad1e7112..203bf6788 100644
--- a/packages/taler-wallet-core/src/operations/common.ts
+++ b/packages/taler-wallet-core/src/operations/common.ts
@@ -232,7 +232,7 @@ export async function resetOperationTimeout(
if (retryRecord) {
// Note that we don't reset the lastError, it should still be visible
// while the retry runs.
- retryRecord.retryInfo = RetryInfo.increment(retryRecord.retryInfo);
+ retryRecord.retryInfo = RetryInfo.reset();
await tx.operationRetries.put(retryRecord);
}
});