Fixes
This commit is contained in:
parent
cd38667a7c
commit
7874949fa1
1 changed files with 1 additions and 1 deletions
|
|
@ -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.')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue