mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 04:29:44 +01:00
[extractor/generic] Don't report redirect to https
This commit is contained in:
parent
105bfd90f5
commit
4de88a6a36
@ -2584,7 +2584,9 @@ class GenericIE(InfoExtractor):
|
||||
**smuggled_data.get('http_headers', {})
|
||||
})
|
||||
new_url = full_response.geturl()
|
||||
if url != new_url:
|
||||
if new_url == urllib.parse.urlparse(url)._replace(scheme='https').geturl():
|
||||
url = new_url
|
||||
elif url != new_url:
|
||||
self.report_following_redirect(new_url)
|
||||
if force_videoid:
|
||||
new_url = smuggle_url(new_url, {'force_videoid': force_videoid})
|
||||
|
Loading…
Reference in New Issue
Block a user