mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-16 10:50:51 +00:00
[generic] Unescape HTML escape sequences in redirect urls (fixes #6311)
This commit is contained in:
parent
87dc451108
commit
b37317d8b0
@ -1702,7 +1702,7 @@ class GenericIE(InfoExtractor):
|
|||||||
if refresh_header:
|
if refresh_header:
|
||||||
found = re.search(REDIRECT_REGEX, refresh_header)
|
found = re.search(REDIRECT_REGEX, refresh_header)
|
||||||
if found:
|
if found:
|
||||||
new_url = compat_urlparse.urljoin(url, found.group(1))
|
new_url = compat_urlparse.urljoin(url, unescapeHTML(found.group(1)))
|
||||||
self.report_following_redirect(new_url)
|
self.report_following_redirect(new_url)
|
||||||
return {
|
return {
|
||||||
'_type': 'url',
|
'_type': 'url',
|
||||||
|
Loading…
Reference in New Issue
Block a user