diff options
author | Jesús <heckyel@hyperbola.info> | 2021-12-22 13:30:44 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-12-22 13:30:44 -0500 |
commit | 4f0875462ee497cc13c02d0b852f52f4887b5cea (patch) | |
tree | 38df3d0c84047aa52ba9e712c4417f69cf767310 /yt_dlp/downloader/dash.py | |
parent | 65ee789d3062a5321faf0092fc2cf8ec498fc4a1 (diff) | |
parent | 4273cc776d339478262e0b37cb1ffee3bc67b04a (diff) | |
download | hypervideo-pre-4f0875462ee497cc13c02d0b852f52f4887b5cea.tar.lz hypervideo-pre-4f0875462ee497cc13c02d0b852f52f4887b5cea.tar.xz hypervideo-pre-4f0875462ee497cc13c02d0b852f52f4887b5cea.zip |
updated from upstream | 22/12/2021 at 13:30
Diffstat (limited to 'yt_dlp/downloader/dash.py')
-rw-r--r-- | yt_dlp/downloader/dash.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/downloader/dash.py b/yt_dlp/downloader/dash.py index 8dd43f4fa..4c23edd32 100644 --- a/yt_dlp/downloader/dash.py +++ b/yt_dlp/downloader/dash.py @@ -47,7 +47,7 @@ class DashSegmentsFD(FragmentFD): if real_downloader: self.to_screen( '[%s] Fragment downloads will be delegated to %s' % (self.FD_NAME, real_downloader.get_basename())) - info_dict['fragments'] = fragments_to_download + info_dict['fragments'] = list(fragments_to_download) fd = real_downloader(self.ydl, self.params) return fd.real_download(filename, info_dict) |