From db4798754a17d1be1fcfe0402b8574928915728d Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 7 Jan 2023 09:58:53 +0700 Subject: [PATCH] match streams type with was_live --- tubearchivist/home/src/download/queue.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tubearchivist/home/src/download/queue.py b/tubearchivist/home/src/download/queue.py index dd45fad..34afbbb 100644 --- a/tubearchivist/home/src/download/queue.py +++ b/tubearchivist/home/src/download/queue.py @@ -267,6 +267,9 @@ class PendingList(PendingIndex): if vid["live_status"] in ["is_upcoming", "is_live"]: return False + if vid["live_status"] == "was_live": + vid_type = VideoTypeEnum.STREAMS + return self._parse_youtube_details(vid, vid_type) def _parse_youtube_details(self, vid, vid_type=VideoTypeEnum.VIDEOS):