[downloader:ytdl] prevent exception on empty results

a7c7953107 (commitcomment-92042240)
This commit is contained in:
Mike Fährmann
2023-03-06 12:25:12 +01:00
parent da9840a39d
commit 8148c2a097

View File

@@ -64,6 +64,8 @@ class YoutubeDLDownloader(DownloaderBase):
try:
info_dict = ytdl_instance.extract_info(url[5:], download=False)
except Exception:
pass
if not info_dict:
return False
if "entries" in info_dict: