From 38ec713f153d61812ccd1beff52731f81f71bd97 Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Fri, 15 Mar 2024 01:16:11 +0300 Subject: [PATCH] fix --- app/DownloadQueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/DownloadQueue.py b/app/DownloadQueue.py index a8d32228..a6308a2c 100644 --- a/app/DownloadQueue.py +++ b/app/DownloadQueue.py @@ -134,7 +134,7 @@ class DownloadQueue: output_template=output_template if output_template else self.config.output_template, datetime=formatdate(time.time()), error=error, - is_live=entry.get('is_live', None) or 'is_live' == entry.get('live_status', None) or live_in, + is_live=entry.get('is_live', None) or entry.get('live_status', None) in ['is_live', 'is_upcoming'] or live_in, live_in=live_in, options=options )