- Use a more neutral origin

- Uncertain but this is less likely to be a problem later if we work out ArRPC interop
This commit is contained in:
Trigg 2024-02-05 17:57:30 +00:00
parent 23321122fa
commit 667ad02a4c

View file

@ -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: