diff --git a/app/DownloadQueue.py b/app/DownloadQueue.py index a6308a2c..ed5ae079 100644 --- a/app/DownloadQueue.py +++ b/app/DownloadQueue.py @@ -160,7 +160,7 @@ class DownloadQueue: debug=bool(self.config.ytdl_debug) ) - if dlInfo.info.live_in: + if dlInfo.info.live_in or 'is_upcoming' == entry.get('live_status',None): dlInfo.info.status = 'not_live' itemDownload = self.done.put(dlInfo) NotifyEvent = 'completed' diff --git a/frontend/src/components/Page-Completed.vue b/frontend/src/components/Page-Completed.vue index 6c18559f..29ce86bf 100644 --- a/frontend/src/components/Page-Completed.vue +++ b/frontend/src/components/Page-Completed.vue @@ -77,7 +77,7 @@