From 7874949fa127d99e46e8815b980f9eac9fc651b4 Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Sat, 6 Jan 2024 21:19:45 +0300 Subject: [PATCH] Fixes --- app/DownloadQueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/DownloadQueue.py b/app/DownloadQueue.py index ac87a0cc..cc1d63d9 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 entry.get('live_status') is 'post_live': + if not self.config.allow_manifestless and 'live_status' in entry and 'post_live' == entry.get('live_status'): raise yt_dlp.utils.YoutubeDLError( 'Video is in Post-Live Manifestless mode.')