From d892bc02b2af405c193202766a3e56481e73d21d Mon Sep 17 00:00:00 2001 From: Austin Jackson Date: Tue, 22 Aug 2023 14:00:16 -0500 Subject: [PATCH] Fix missing tags array breaking get_stream (#281) --- channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channel.py b/channel.py index 313708dd..581d2193 100644 --- a/channel.py +++ b/channel.py @@ -50,7 +50,7 @@ def from_get_stream(cls, channel: Channel, data: JsonType) -> Stream: game=settings["game"], viewers=stream["viewersCount"], title=settings["title"], - tags=stream["tags"], + tags=stream["tags"] or [], ) @classmethod