From 667ad02a4cd5b1c0655f034bb415d000206fd078 Mon Sep 17 00:00:00 2001 From: Trigg Date: Mon, 5 Feb 2024 17:57:30 +0000 Subject: [PATCH] - Use a more neutral origin - Uncertain but this is less likely to be a problem later if we work out ArRPC interop --- discover_overlay/discord_connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discover_overlay/discord_connector.py b/discover_overlay/discord_connector.py index 4860d68..6744878 100644 --- a/discover_overlay/discord_connector.py +++ b/discover_overlay/discord_connector.py @@ -793,7 +793,7 @@ class DiscordConnector: try: self.websocket = websocket.create_connection( "ws://127.0.0.1:6463/?v=1&client_id=%s" % (self.oauth_token), - origin="https://streamkit.discord.com" + origin="http://localhost:3000" ) self.warn_connection=True # Warn on next disconnect except ConnectionError as error: