diff --git a/youtube_dl/downloader/f4m.py b/youtube_dl/downloader/f4m.py index 84e4a224d..45038186a 100644 --- a/youtube_dl/downloader/f4m.py +++ b/youtube_dl/downloader/f4m.py @@ -343,8 +343,7 @@ class F4mFD(FileDownloader): toplevel_status['speed'] = status['speed'] if 'eta' in status: toplevel_status['eta'] = eta - for hook in self._progress_hooks: - hook(toplevel_status) + self._hook_progress(toplevel_status) http_dl.add_progress_hook(frag_progress_hook)