Update ytdl.py

don't resolve unresolved all unresolved references when extracting info

this fixes issues where reddit urls don't work
This commit is contained in:
ykram 2021-09-30 11:31:24 -06:00 committed by GitHub
parent 4530c21b24
commit c049329485
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -150,7 +150,7 @@ class DownloadQueue:
'no_color': True,
'extract_flat': True,
**self.config.YTDL_OPTIONS,
}).extract_info(url, download=False)
}).extract_info(url, download=False, process=False)
async def __add_entry(self, entry, quality, format, already):
etype = entry.get('_type') or 'video'