aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-06-30 23:44:15 +0200
committerFlorian Dold <florian@dold.me>2024-06-30 23:44:15 +0200
commit023b8f576b22155bf6116f0fed19aa4c7c1397c9 (patch)
treeea8e7fd4d2e79e8d4be32e8824075b96c0641186 /packages/taler-wallet-core
parentac268c9215a4eafd882aa174b565dc90960941f0 (diff)
downloadwallet-core-023b8f576b22155bf6116f0fed19aa4c7c1397c9.tar.xz
wallet-core: use taler-terms-version header instead of etag
Diffstat (limited to 'packages/taler-wallet-core')
-rw-r--r--packages/taler-wallet-core/src/exchanges.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/exchanges.ts b/packages/taler-wallet-core/src/exchanges.ts
index ab3f95214..04f4b27eb 100644
--- a/packages/taler-wallet-core/src/exchanges.ts
+++ b/packages/taler-wallet-core/src/exchanges.ts
@@ -195,7 +195,7 @@ async function downloadExchangeWithTermsOfService(
cancellationToken: wex.cancellationToken,
});
const tosText = await readSuccessResponseTextOrThrow(resp);
- const tosEtag = resp.headers.get("etag") || "unknown";
+ const tosEtag = resp.headers.get("taler-terms-version") || "unknown";
const tosContentLanguage = resp.headers.get("content-language") || undefined;
const tosContentType = resp.headers.get("content-type") || "text/plain";
const availLangStr = resp.headers.get("avail-languages") || "";
@@ -907,7 +907,7 @@ async function downloadTosMeta(
throwUnexpectedRequestError(resp, await readTalerErrorResponse(resp));
}
- const etag = resp.headers.get("etag") || "unknown";
+ const etag = resp.headers.get("taler-terms-version") || "unknown";
return {
type: "ok",
etag,