diff options
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 5e3c015ba..7e0a69528 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -2437,7 +2437,8 @@ class YoutubeDL(object): else: assert fixup_policy in ('ignore', 'never') - if get_suitable_downloader(info_dict, self.params).__name__ == 'HlsFD': + if ('protocol' in info_dict + and get_suitable_downloader(info_dict, self.params).__name__ == 'HlsFD'): if fixup_policy == 'warn': self.report_warning('%s: malformed AAC bitstream detected.' % ( info_dict['id'])) |