mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
fix: prevent processing of non-downloadable items in download_selected function
This commit is contained in:
@@ -14,6 +14,8 @@ def download_selected(items, posts, post_titles):
|
||||
return
|
||||
seen = set()
|
||||
for item in items:
|
||||
if item.column() != 0:
|
||||
continue
|
||||
text = item.text()
|
||||
if text and text not in seen:
|
||||
seen.add(text)
|
||||
|
||||
Reference in New Issue
Block a user