aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/YoutubeDL.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-05-18 09:04:30 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-05-18 09:04:30 +0530
commit21633673c33f082c6673bc245e4a90d880729a58 (patch)
treefc306a79b1754a1c596cfd4a7cd1d9d661543044 /yt_dlp/YoutubeDL.py
parent80e8493ee7c3083f4e215794e4a67ba5265f24f7 (diff)
[cleanup] Minor fixes
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r--yt_dlp/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py
index 31624f181..ba08f6a7d 100644
--- a/yt_dlp/YoutubeDL.py
+++ b/yt_dlp/YoutubeDL.py
@@ -1924,7 +1924,7 @@ class YoutubeDL:
and download
and (
not can_merge()
- or info_dict.get('is_live', False)
+ or info_dict.get('is_live') and not self.params.get('live_from_start')
or self.outtmpl_dict['default'] == '-'))
compat = (
prefer_best