diff --git a/youtube_dl_gui/downloadmanager.py b/youtube_dl_gui/downloadmanager.py index 357a2d9..db7cf94 100644 --- a/youtube_dl_gui/downloadmanager.py +++ b/youtube_dl_gui/downloadmanager.py @@ -182,7 +182,7 @@ class DownloadItem(object): self._set_stage(stats_dict[key]) if "filesize" in stats_dict: - if len(self.filesizes) < len(self.filenames): + if stats_dict["percent"] == "100%" and len(self.filesizes) < len(self.filenames): filesize = stats_dict["filesize"].lstrip("~") # HLS downloader etc self.filesizes.append(to_bytes(filesize))