aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-08-24 06:21:33 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-08-24 06:23:21 +0530
commit45842107b90988187df0727683e6d93ee4ece34b (patch)
tree7ce1707e9819a3a34dbac98a51fb3391cede8efc
parent6251555f1c670c66aa781bf9f29e9b5b33d90be1 (diff)
downloadhypervideo-pre-45842107b90988187df0727683e6d93ee4ece34b.tar.lz
hypervideo-pre-45842107b90988187df0727683e6d93ee4ece34b.tar.xz
hypervideo-pre-45842107b90988187df0727683e6d93ee4ece34b.zip
fix bug in 6251555f1c670c66aa781bf9f29e9b5b33d90be1
:ci skip
-rw-r--r--yt_dlp/downloader/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/downloader/__init__.py b/yt_dlp/downloader/__init__.py
index cd45610fc..739d98c2b 100644
--- a/yt_dlp/downloader/__init__.py
+++ b/yt_dlp/downloader/__init__.py
@@ -95,7 +95,7 @@ def _get_suitable_downloader(info_dict, params, default):
return ed
if protocol == 'http_dash_segments':
- if info_dict.get('is_live') and external_downloader.lower() != 'native':
+ if info_dict.get('is_live') and (external_downloader or '').lower() != 'native':
return FFmpegFD
if protocol in ('m3u8', 'm3u8_native'):