aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-12-12 17:37:06 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-12-12 17:37:06 +0100
commit659435570440c5a5eacde3a2e6ef5b3f3430a45f (patch)
tree853835a09bd5b66e8e36a4be07ca25d5ce0e6e17 /src
parent9b18c87deb904d83ae5748236dff70de7c5fa656 (diff)
downloadwallet-core-659435570440c5a5eacde3a2e6ef5b3f3430a45f.tar.xz
only warn when actually necessary
Diffstat (limited to 'src')
-rw-r--r--src/types.ts2
-rw-r--r--src/webex/wxBackend.ts3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/types.ts b/src/types.ts
index 857537251..ca01203d5 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -1787,6 +1787,8 @@ export interface PurchaseRecord {
* Set to 0 if no refund was made on the purchase.
*/
timestamp_refund: number;
+
+ userAccepted: boolean;
}
diff --git a/src/webex/wxBackend.ts b/src/webex/wxBackend.ts
index a804c73d1..213d234d4 100644
--- a/src/webex/wxBackend.ts
+++ b/src/webex/wxBackend.ts
@@ -484,8 +484,9 @@ function handleBankRequest(wallet: Wallet, headerList: chrome.webRequest.HttpHea
if (reservePub !== undefined) {
console.log(`confirming reserve ${reservePub} via 201`);
wallet.confirmReserve({reservePub});
+ } else {
+ console.warn("got 'X-Taler-Operation: confirm-reserve' without 'X-Taler-Reserve-Pub'");
}
- console.warn("got 'X-Taler-Operation: confirm-reserve' without 'X-Taler-Reserve-Pub'");
return;
}