[extractor/generic] Don't report redirect to https

pull/5571/head
pukkandan 2 years ago
parent 105bfd90f5
commit 4de88a6a36
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39

@ -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…
Cancel
Save