From 8685c01969837a66711c81a34ab581beb9ec3e92 Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Sat, 3 Feb 2024 16:19:47 +0300 Subject: [PATCH] fix --- app/DownloadQueue.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/DownloadQueue.py b/app/DownloadQueue.py index e04f1cfc..b974cf26 100644 --- a/app/DownloadQueue.py +++ b/app/DownloadQueue.py @@ -118,7 +118,8 @@ class DownloadQueue: except KeyError: pass - options.update({'is_manifestless': 'post_live' == entry.get('live_status', None)}) + is_manifestless = entry.get('is_manifestless', False) + options.update({'is_manifestless': is_manifestless}) dl = ItemDTO( id=entry.get('id'), @@ -134,7 +135,7 @@ class DownloadQueue: error=error, is_live=entry.get('is_live', None) or 'is_live' == entry.get('live_status', None) or live_in, live_in=live_in, - options=options, + options=options ) try: