aboutsummaryrefslogtreecommitdiff
path: root/src/operations/refund.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-19 17:14:43 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-19 17:14:43 +0100
commit337a59566c444882b3cd6decdde6adc6fd793f71 (patch)
treed8485e21bf8577735f3184b9e3d5a223206b5a3a /src/operations/refund.ts
parentfd5f3977bbdde6cbb4192f3a581abde15215288f (diff)
downloadwallet-core-337a59566c444882b3cd6decdde6adc6fd793f71.tar.xz
fix error in refund retry
Diffstat (limited to 'src/operations/refund.ts')
-rw-r--r--src/operations/refund.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/operations/refund.ts b/src/operations/refund.ts
index 27d83230a..7e6803685 100644
--- a/src/operations/refund.ts
+++ b/src/operations/refund.ts
@@ -1,6 +1,6 @@
/*
This file is part of GNU Taler
- (C) 2019 Taler Systems S.A.
+ (C) 2019-2019 Taler Systems S.A.
GNU Taler is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
@@ -92,7 +92,7 @@ async function incrementPurchaseApplyRefundRetry(
return;
}
pr.refundApplyRetryInfo.retryCounter++;
- updateRetryInfoTimeout(pr.refundStatusRetryInfo);
+ updateRetryInfoTimeout(pr.refundApplyRetryInfo);
pr.lastRefundApplyError = err;
await tx.put(Stores.purchases, pr);
});