diff --git a/frontend/src/app/services/websocket.service.ts b/frontend/src/app/services/websocket.service.ts index 22aef76e7..cb9c96923 100644 --- a/frontend/src/app/services/websocket.service.ts +++ b/frontend/src/app/services/websocket.service.ts @@ -72,7 +72,7 @@ export class WebsocketService { } this.stateService.networkChanged$.subscribe((network) => { - if (network === this.network) { + if (network === this.network || network === this.stateService.env.ROOT_NETWORK) { return; } this.network = network === this.stateService.env.ROOT_NETWORK ? '' : network;