From 11d1142346e3e01db9eaabbe07e7b52b2bbb4384 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Tue, 18 Feb 2025 20:15:40 +0100 Subject: [PATCH] Fix channel_points_custom_reward_id --- src/modules/stream_notifications/messages_proc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/stream_notifications/messages_proc.py b/src/modules/stream_notifications/messages_proc.py index e73a595..e677c5c 100644 --- a/src/modules/stream_notifications/messages_proc.py +++ b/src/modules/stream_notifications/messages_proc.py @@ -49,7 +49,7 @@ class MessageEvent(BaseModel): color: str reply: ChatMessageReplyMetadata | None - channel_points_custom_reward_id: str + channel_points_custom_reward_id: str | None @classmethod def from_twitch_event(cls, event: ChannelChatMessageEvent):