Skip to content

Commit

Permalink
#343 temporary workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavydov committed Aug 21, 2023
1 parent 7083798 commit 256042a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion TwitchChannelPointsMiner/classes/entities/Stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def update(self, broadcast_id, title, game, tags, viewers_count):
self.broadcast_id = broadcast_id
self.title = title.strip()
self.game = game
self.tags = tags
# #343 temporary workaround
self.tags = tags or []
# ------------------------
self.viewers_count = viewers_count

self.drops_tags = (
Expand Down

0 comments on commit 256042a

Please sign in to comment.