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
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class DumpertIE(InfoExtractor):
ext = determine_ext(uri)
if ext == 'm3u8':
formats.extend(self._extract_m3u8_formats(
uri, video_id, ext='mp4', m3u8_id=format_id))
uri, video_id, ext='mp4', m3u8_id=version))
else:
formats.append({
'url': uri,