This commit is contained in:
2025-11-18 01:13:08 +01:00
parent c6450bc7be
commit 555ba5a2d0

View File

@@ -28,9 +28,9 @@ class TwitchBot(commands.Bot):
# These are required by twitchio # These are required by twitchio
client_id=client_id, client_id=client_id,
client_secret=client_secret, client_secret=client_secret,
# The 'bot_id' is the Twitch ID of the user account the bot is running as # The 'bot_id' is NOT a valid parameter for the parent commands.Bot class.
ssl=True, # Mandate: Explicitly use SSL for the IRC connection. # Its presence was causing our web_server_adapter to be ignored.
bot_id=bot_id ssl=True # Mandate: Explicitly use SSL for the IRC connection.
) )
self.channel_name = channel_name self.channel_name = channel_name