taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 60c6395a517d88cd7dd2ab5371bacfe357ab5321
parent 3dd6607d3b45438bf559d238e1e0eba0b443e7bd
Author: Nullptrderef <nullptrderef@proton.me>
Date:   Sun, 21 Apr 2024 09:06:59 +0200

RFC7232 3.1 and 3.2, again

Diffstat:
Mpackages/taler-wallet-core/src/backup/index.ts | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/taler-wallet-core/src/backup/index.ts b/packages/taler-wallet-core/src/backup/index.ts @@ -232,10 +232,10 @@ async function runBackupCycleForProvider( headers: { "content-type": "application/octet-stream", "sync-signature": syncSigResp.sig, - "if-none-match": newHash, + "if-none-match": JSON.stringify(newHash), ...(provider.lastBackupHash ? { - "if-match": provider.lastBackupHash, + "if-match": JSON.stringify(provider.lastBackupHash), } : {}), },