hide aria2 metadata in state.downloads

This commit is contained in:
2025-10-12 17:06:00 +02:00
parent 30e920675d
commit 65a5b8cdbf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,4 +14,4 @@ def create_tab(title, searchbar, software_list, tabs, dlbutton, layout2):
layout.addWidget(dlbutton)
tab.setLayout(layout)
tabs.addTab(tab, title)
return tab
return tab
+1 -1
View File
@@ -44,7 +44,7 @@ def aria2server():
def dlprogress():
try:
state.downloads = state.aria2.get_downloads()
state.downloads = [download for download in state.aria2.get_downloads() if not download.is_metadata]
downloads = state.downloads
if downloads:
for download in downloads: