Fix watch payload not having enough fields to progress the new campaigns

This commit is contained in:
DevilXD
2023-10-21 23:20:18 +02:00
parent 1d26988721
commit bb51bf7400

View File

@@ -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,
}