diff options
author | Florian Dold <florian@dold.me> | 2023-08-29 13:44:50 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2023-08-29 13:44:50 +0200 |
commit | ebb1c58e7a2be01e42f35dfe6d890a08cf992c79 (patch) | |
tree | 7ecb9a2d082d499854502114924351329c7c1bf9 /packages/taler-wallet-core/src/operations/merchants.ts | |
parent | 9402aeef5b111c3a9bf51a7b204044ba19de8607 (diff) |
wallet-core: remove usage of /wire
Diffstat (limited to 'packages/taler-wallet-core/src/operations/merchants.ts')
-rw-r--r-- | packages/taler-wallet-core/src/operations/merchants.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/merchants.ts b/packages/taler-wallet-core/src/operations/merchants.ts index c47ec4a0a..a148953f0 100644 --- a/packages/taler-wallet-core/src/operations/merchants.ts +++ b/packages/taler-wallet-core/src/operations/merchants.ts @@ -41,7 +41,7 @@ export async function getMerchantInfo( } const configUrl = new URL("config", canonBaseUrl); - const resp = await ws.http.get(configUrl.href); + const resp = await ws.http.fetch(configUrl.href); const configResp = await readSuccessResponseJsonOrThrow( resp, |