From 67d7f61a078530894d720a224e1e97eed912d00d Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Sat, 6 Jan 2024 21:26:43 +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 cc1d63d9..89c7f52b 100644 --- a/app/DownloadQueue.py +++ b/app/DownloadQueue.py @@ -221,7 +221,7 @@ class DownloadQueue: if self.isDownloaded(entry): raise yt_dlp.utils.ExistingVideoReached() - if not self.config.allow_manifestless and 'live_status' in entry and 'post_live' == entry.get('live_status'): + if self.config.allow_manifestless is False and 'live_status' in entry and 'post_live' == entry.get('live_status'): raise yt_dlp.utils.YoutubeDLError( 'Video is in Post-Live Manifestless mode.')