fix
This commit is contained in:
parent
7874949fa1
commit
67d7f61a07
1 changed files with 1 additions and 1 deletions
|
|
@ -221,7 +221,7 @@ class DownloadQueue:
|
||||||
if self.isDownloaded(entry):
|
if self.isDownloaded(entry):
|
||||||
raise yt_dlp.utils.ExistingVideoReached()
|
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(
|
raise yt_dlp.utils.YoutubeDLError(
|
||||||
'Video is in Post-Live Manifestless mode.')
|
'Video is in Post-Live Manifestless mode.')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue