summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-01-10 22:47:41 +0100
committerFlorian Dold <florian@dold.me>2024-01-10 22:47:41 +0100
commitde9dea067d3aada18df8af5009c665905f931310 (patch)
tree91758f56669041aac8252f492d33e83138fc48f5
parent1eab08e047bbd0ca8c4caa758e8651905e702e22 (diff)
downloadwallet-core-de9dea067d3aada18df8af5009c665905f931310.tar.gz
wallet-core-de9dea067d3aada18df8af5009c665905f931310.tar.bz2
wallet-core-de9dea067d3aada18df8af5009c665905f931310.zip
wallet-core: fix wrong request method (typo!)
-rw-r--r--packages/taler-wallet-core/src/operations/withdraw.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts
index 0817be472..d02cf0597 100644
--- a/packages/taler-wallet-core/src/operations/withdraw.ts
+++ b/packages/taler-wallet-core/src/operations/withdraw.ts
@@ -1001,7 +1001,7 @@ async function processPlanchetExchangeBatchRequest(
try {
const resp = await ws.http.fetch(reqUrl, {
- method: "PATCH",
+ method: "POST",
body: batchReq,
});
if (resp.status === HttpStatusCode.UnavailableForLegalReasons) {