mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-12-04 09:42:59 +01:00
Fixed wrong variable name that shouldn't have been there
This commit is contained in:
parent
edfcc50a7c
commit
7784d3c37e
@ -69,7 +69,7 @@ class DumpertIE(InfoExtractor):
|
|||||||
ext = determine_ext(uri)
|
ext = determine_ext(uri)
|
||||||
if ext == 'm3u8':
|
if ext == 'm3u8':
|
||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
uri, video_id, ext='mp4', m3u8_id=format_id))
|
uri, video_id, ext='mp4', m3u8_id=version))
|
||||||
else:
|
else:
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': uri,
|
'url': uri,
|
||||||
|
Loading…
Reference in New Issue
Block a user