From d1c4c931efa9860f1e6686a69ced2282479d25ce Mon Sep 17 00:00:00 2001 From: ramforth Date: Mon, 17 Nov 2025 15:45:16 +0100 Subject: [PATCH] Changing websocket port --- chat_listener.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chat_listener.py b/chat_listener.py index 8924d6d..dbd7fc1 100644 --- a/chat_listener.py +++ b/chat_listener.py @@ -13,7 +13,9 @@ class TwitchBot(commands.Bot): # The 'bot_id' is the Twitch ID of the user account the bot is running as bot_id=bot_id, id=bot_id, # Explicitly disable the internal web server to prevent port conflicts - eventsub_url=None + eventsub_url=None, + # Ensure no web adapter is initialized + web_adapter=None ) self.channel_name = channel_name