From 2b4b0d22ab9f58de71aa91fb897aea1eb8ab5713 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 25 Jul 2020 21:59:52 +0700 Subject: [PATCH] Fix for electrs requests on /bisq --- frontend/src/app/services/electrs-api.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/services/electrs-api.service.ts b/frontend/src/app/services/electrs-api.service.ts index 180d5973d..e23fa9e55 100644 --- a/frontend/src/app/services/electrs-api.service.ts +++ b/frontend/src/app/services/electrs-api.service.ts @@ -19,7 +19,7 @@ export class ElectrsApiService { ) { this.apiBaseUrl = API_BASE_URL.replace('{network}', ''); this.stateService.networkChanged$.subscribe((network) => { - if (network === 'bisq' && !env.BISQ_SEPARATE_BACKEND) { + if (network === 'bisq') { network = ''; } this.apiBaseUrl = API_BASE_URL.replace('{network}', network ? '/' + network : '');