mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 19:29:51 +01:00
parent
885fe351fb
commit
1ac4fd80c8
@ -1732,7 +1732,7 @@ def __process_playlist(self, ie_result, download):
|
|||||||
resolved_entries.append((playlist_index, entry))
|
resolved_entries.append((playlist_index, entry))
|
||||||
|
|
||||||
# TODO: Add auto-generated fields
|
# TODO: Add auto-generated fields
|
||||||
if self._match_entry(entry, incomplete=True) is not None:
|
if not entry or self._match_entry(entry, incomplete=True) is not None:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
self.to_screen('[download] Downloading video %s of %s' % (
|
self.to_screen('[download] Downloading video %s of %s' % (
|
||||||
|
@ -2883,6 +2883,8 @@ def get_requested_items(self):
|
|||||||
for index in self.parse_playlist_items(playlist_items):
|
for index in self.parse_playlist_items(playlist_items):
|
||||||
for i, entry in self[index]:
|
for i, entry in self[index]:
|
||||||
yield i, entry
|
yield i, entry
|
||||||
|
if not entry:
|
||||||
|
continue
|
||||||
try:
|
try:
|
||||||
# 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)
|
||||||
|
Loading…
Reference in New Issue
Block a user