fix: Correct notification subscription parameters

This commit is contained in:
2026-07-22 13:10:40 +03:00
parent 0326220880
commit e2f782845f
+4 -1
View File
@@ -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,
),
)
)