mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
parent
b2e0343ba0
commit
d21056f4cf
1 changed files with 4 additions and 2 deletions
|
@ -3042,6 +3042,8 @@ class PlaylistEntries:
|
||||||
if not entry:
|
if not entry:
|
||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
|
# The item may have just been added to archive. Don't break due to it
|
||||||
|
if not self.ydl.params.get('lazy_playlist'):
|
||||||
# TODO: Add auto-generated fields
|
# TODO: Add auto-generated fields
|
||||||
self.ydl._match_entry(entry, incomplete=True, silent=True)
|
self.ydl._match_entry(entry, incomplete=True, silent=True)
|
||||||
except (ExistingVideoReached, RejectedVideoReached):
|
except (ExistingVideoReached, RejectedVideoReached):
|
||||||
|
|
Loading…
Reference in a new issue