chore: establish websockets connection only on first party server hosts (#2616)

This commit is contained in:
Karol Sójko
2023-11-02 13:33:42 +01:00
committed by GitHub
parent 4be9b51481
commit f95a4fe981

View File

@@ -197,7 +197,9 @@ export class SessionManager
this.apiService.setSession(session, persist)
void this.webSocketsService.startWebSocketConnection()
if (this.isSignedIntoFirstPartyServer()) {
void this.webSocketsService.startWebSocketConnection()
}
}
public online() {