From 7a166d449018d4a797bf0da11ca6179c00c78c9f Mon Sep 17 00:00:00 2001 From: Drew Ansbacher Date: Tue, 14 Sep 2021 18:59:30 -0600 Subject: [PATCH] rpc/v1 --- setup-wizard/src/app/services/api/http.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-wizard/src/app/services/api/http.service.ts b/setup-wizard/src/app/services/api/http.service.ts index 779bb4c0b..be5985104 100644 --- a/setup-wizard/src/app/services/api/http.service.ts +++ b/setup-wizard/src/app/services/api/http.service.ts @@ -16,7 +16,7 @@ export class HttpService { private readonly http: HttpClient, ) { const port = window.location.port - this.fullUrl = `${window.location.protocol}//${window.location.hostname}:${port}` + this.fullUrl = `${window.location.protocol}//${window.location.hostname}:${port}/rpc/v1` } async rpcRequest (body: RPCOptions): Promise {