[youtube] Fix bug where not all hls formats were extracted

Bug introduced in 9297939ec3
pull/342/head
pukkandan 2021-05-23 03:08:11 +05:30
rodzic 135e6b93f4
commit 8d68ab98a7
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0F00D95A001F4698
1 zmienionych plików z 1 dodań i 1 usunięć
yt_dlp/extractor

Wyświetl plik

@ -2107,7 +2107,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
r'/itag/(\d+)', f['url'], 'itag', default=None)
if itag:
f['format_id'] = itag
formats.append(f)
formats.append(f)
if self.get_param('youtube_include_dash_manifest', True):
for sd in (streaming_data, ytm_streaming_data):