mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-04 10:02:48 +01:00
[tnaflix] Don't modify download URLs (closes #14811)
This commit is contained in:
parent
fe4bfe36e1
commit
dbb25af657
@ -91,7 +91,8 @@ class TNAFlixNetworkBaseIE(InfoExtractor):
|
||||
formats = []
|
||||
|
||||
def extract_video_url(vl):
|
||||
return re.sub(r'speed=\d+', 'speed=', unescapeHTML(vl.text))
|
||||
# Any URL modification now results in HTTP Error 403: Forbidden
|
||||
return unescapeHTML(vl.text)
|
||||
|
||||
video_link = cfg_xml.find('./videoLink')
|
||||
if video_link is not None:
|
||||
|
Loading…
Reference in New Issue
Block a user