diff options
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 29a4e0a72..fc0689882 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -2619,7 +2619,7 @@ class YoutubeDL: if chapter or offset: new_info.update({ 'section_start': offset + chapter.get('start_time', 0), - 'section_end': offset + min(chapter.get('end_time', 0), duration), + 'section_end': offset + min(chapter.get('end_time', duration), duration), 'section_title': chapter.get('title'), 'section_number': chapter.get('index'), }) |