mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-07-17 15:21:14 +09:00
[fd/hls] Fix crash on empty fragment lists in tests (#17218)
Authored by: doe1080
This commit is contained in:
@@ -300,7 +300,7 @@ class HlsFD(FragmentFD):
|
||||
|
||||
# We only download the first fragment during the test
|
||||
if self.params.get('test', False):
|
||||
fragments = [fragments[0] if fragments else None]
|
||||
fragments = fragments[:1]
|
||||
|
||||
if real_downloader:
|
||||
info_dict['fragments'] = fragments
|
||||
|
||||
Reference in New Issue
Block a user