Fix can_watch ignoring drops_enabled status

This commit is contained in:
DevilXD
2024-09-10 14:38:44 +02:00
parent 08f58e5f7a
commit 0551f49a3d

View File

@@ -963,7 +963,7 @@ class Twitch:
# exit early if
if (
not channel.online # stream is offline
# or not channel.drops_enabled # drops aren't enabled
or not channel.drops_enabled # drops aren't enabled
# there's no game or it's not one of the games we've selected
or (game := channel.game) is None or game not in self.wanted_games
):