1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-03 02:49:28 +00:00

Fixed wrong variable name that shouldn't have been there

This commit is contained in:
DataGhost 2022-05-30 11:46:41 +02:00
parent edfcc50a7c
commit 7784d3c37e

View file

@ -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,