From d7ef852ebb86606a9c1b140a4a8f0c8d68ccf944 Mon Sep 17 00:00:00 2001 From: Interitio Date: Wed, 22 Jul 2026 13:10:40 +0300 Subject: [PATCH] fix: Correct notification subscription parameters --- tracker/component.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tracker/component.py b/tracker/component.py index 3cdc1fa..964678c 100644 --- a/tracker/component.py +++ b/tracker/component.py @@ -76,7 +76,6 @@ class TrackerComponent(cmds.Component): eventsub.StreamOnlineSubscription, eventsub.StreamOfflineSubscription, eventsub.ChannelUpdateSubscription, - eventsub.ChatNotificationSubscription, ) ) @@ -106,6 +105,10 @@ class TrackerComponent(cmds.Component): eventsub.ChannelRaidSubscription( from_broadcaster_user_id=channel.userid ), + eventsub.ChatNotificationSubscription( + broadcaster_user_id=channel.userid, + user_id=self.bot.bot_id, + ), ) )