This commit is contained in:
Yuvi9587
2025-06-01 08:22:29 +01:00
parent 7d4e785ca1
commit f93795e370
3 changed files with 38 additions and 51 deletions

View File

@@ -3357,7 +3357,9 @@ class DownloaderApp(QWidget):
self.file_progress_label.setText(progress_text)
elif isinstance(progress_info, tuple) and len(progress_info) == 2:
if not filename and total_bytes == 0 and downloaded_bytes == 0:
downloaded_bytes, total_bytes = progress_info # Unpack the tuple
if not filename and total_bytes == 0 and downloaded_bytes == 0:
self.file_progress_label.setText("")
return