This commit is contained in:
2025-12-03 09:30:32 +00:00
parent d5169fbec7
commit 85b1562a75
4 changed files with 23 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ class DownloadManager:
return task
def get_queue(self):
return list(self.active_downloads.values()) + self.history
return list(self.active_downloads.values()) + self.history[-10:]
def _worker(self):
while True: