mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[YoutubeDL] Sanitize url for url and url_transparent extraction results
This commit is contained in:
parent
0730be9022
commit
134c6ea856
@ -720,6 +720,7 @@ def process_ie_result(self, ie_result, download=True, extra_info={}):
|
||||
result_type = ie_result.get('_type', 'video')
|
||||
|
||||
if result_type in ('url', 'url_transparent'):
|
||||
ie_result['url'] = sanitize_url(ie_result['url'])
|
||||
extract_flat = self.params.get('extract_flat', False)
|
||||
if ((extract_flat == 'in_playlist' and 'playlist' in extra_info) or
|
||||
extract_flat is True):
|
||||
|
Loading…
Reference in New Issue
Block a user