diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-24 17:54:05 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-24 22:04:23 +0530 |
commit | 8e897ed283be889dc293522eca6435f081d3a307 (patch) | |
tree | 9466f3549aa5ad6c3e7a8f437d73b49caf23c895 /yt_dlp/downloader/dash.py | |
parent | 412cce82b06b3eb9788ac31b569d16316f79b03e (diff) | |
download | hypervideo-pre-8e897ed283be889dc293522eca6435f081d3a307.tar.lz hypervideo-pre-8e897ed283be889dc293522eca6435f081d3a307.tar.xz hypervideo-pre-8e897ed283be889dc293522eca6435f081d3a307.zip |
[fragment] Return status of download correctly
Diffstat (limited to 'yt_dlp/downloader/dash.py')
-rw-r--r-- | yt_dlp/downloader/dash.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/yt_dlp/downloader/dash.py b/yt_dlp/downloader/dash.py index 90c7a3ace..ce4001a09 100644 --- a/yt_dlp/downloader/dash.py +++ b/yt_dlp/downloader/dash.py @@ -57,9 +57,6 @@ class DashSegmentsFD(FragmentFD): # TODO: Make progress updates work without hooking twice # for ph in self._progress_hooks: # fd.add_progress_hook(ph) - success = fd.real_download(filename, info_copy) - if not success: - return False + return fd.real_download(filename, info_copy) else: - self.download_and_append_fragments(ctx, fragments_to_download, info_dict) - return True + return self.download_and_append_fragments(ctx, fragments_to_download, info_dict) |