diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-07-27 23:51:41 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-07-27 23:51:41 +0530 |
commit | 472307a607b046e32f50b05a8be44c47c4b153d4 (patch) | |
tree | 85dc353b196be506fa20e8a917047320e9460382 /src | |
parent | a4f1127e0adc4fca173a4b66419f87c0d387fb8a (diff) |
fix withdrawal operation API path
Diffstat (limited to 'src')
-rw-r--r-- | src/operations/withdraw.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operations/withdraw.ts b/src/operations/withdraw.ts index 9f6804b2b..6f591602d 100644 --- a/src/operations/withdraw.ts +++ b/src/operations/withdraw.ts @@ -142,7 +142,7 @@ export async function getBankWithdrawalInfo( throw Error(`can't parse URL ${talerWithdrawUri}`); } const reqUrl = new URL( - `api/withdraw-operations/${uriResult.withdrawalOperationId}`, + `api/withdraw-operation/${uriResult.withdrawalOperationId}`, uriResult.bankIntegrationApiBaseUrl, ); const resp = await ws.http.get(reqUrl.href); |