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:
parent
4530c21b24
commit
c049329485
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ class DownloadQueue:
|
||||||
'no_color': True,
|
'no_color': True,
|
||||||
'extract_flat': True,
|
'extract_flat': True,
|
||||||
**self.config.YTDL_OPTIONS,
|
**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):
|
async def __add_entry(self, entry, quality, format, already):
|
||||||
etype = entry.get('_type') or 'video'
|
etype = entry.get('_type') or 'video'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue