From bb51bf740070d867d7973fbe6c014b347b349064 Mon Sep 17 00:00:00 2001 From: DevilXD Date: Sat, 21 Oct 2023 23:20:18 +0200 Subject: [PATCH] Fix watch payload not having enough fields to progress the new campaigns --- channel.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/channel.py b/channel.py index b36741d..f2d4175 100644 --- a/channel.py +++ b/channel.py @@ -353,8 +353,14 @@ class Channel: { "event": "minute-watched", "properties": { - "channel_id": self.id, - "broadcast_id": self._stream.broadcast_id, + "broadcast_id": str(self._stream.broadcast_id), + "channel_id": str(self.id), + "channel": self._login, + "hidden": False, + "live": True, + "location": "channel", + "logged_in": True, + "muted": False, "player": "site", "user_id": self._twitch._auth_state.user_id, }