diff options
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index bd6d0d0c1..29a4e0a72 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -1732,7 +1732,7 @@ class YoutubeDL: resolved_entries.append((playlist_index, entry)) # 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 self.to_screen('[download] Downloading video %s of %s' % ( |