mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-13 04:33:07 +00:00
[shahid] fix variable name
This commit is contained in:
parent
a62fd1af27
commit
dfaba1ab95
@ -64,7 +64,7 @@ class ShahidIE(InfoExtractor):
|
|||||||
if 'url' in player_json_data:
|
if 'url' in player_json_data:
|
||||||
m3u8_url = player_json_data['url']
|
m3u8_url = player_json_data['url']
|
||||||
else:
|
else:
|
||||||
for error in json_data['error'].values():
|
for error in player_json_data['error'].values():
|
||||||
raise ExtractorError(error)
|
raise ExtractorError(error)
|
||||||
return
|
return
|
||||||
formats = self._extract_m3u8_formats(m3u8_url, video_id)
|
formats = self._extract_m3u8_formats(m3u8_url, video_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user