From d331a54139276f395116617019308f1f6055fcda Mon Sep 17 00:00:00 2001 From: Tjaden Froyda <38709281+TjadenFroyda@users.noreply.github.com> Date: Mon, 24 Jan 2022 11:51:49 -0600 Subject: [PATCH] Enable getdaemonip for CirrusCore Similar to PR for StraxUI https://github.com/stratisproject/StraxUI/commit/c7afbaffb6b712777db2d09ad50133539de9f0ba --- src/app/shared/services/signalr-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shared/services/signalr-service.ts b/src/app/shared/services/signalr-service.ts index 222e15c4..e05dc999 100644 --- a/src/app/shared/services/signalr-service.ts +++ b/src/app/shared/services/signalr-service.ts @@ -64,7 +64,7 @@ export class SignalRService extends RestApi implements ISignalRService { } this.connection = new signalR.HubConnectionBuilder() - .withUrl(`${con.signalRUri}/${hubName}-hub`, {}) + .withUrl(`http://${this.globalService.getDaemonIP()}:${con.signalRPort}/${hubName}-hub`, {}) .configureLogging(signalR.LogLevel.Information) .build();