[fd/hls] Fix crash on empty fragment lists in tests (#17218)

Authored by: doe1080
This commit is contained in:
doe1080 2026-07-14 23:14:20 +09:00 committed by GitHub
parent d9813a3da6
commit aefce1eea4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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