fix: prevent processing of non-downloadable items in download_selected function

This commit is contained in:
Vxrtrauter
2026-03-07 20:46:41 +01:00
parent fbc2225878
commit b2a30af5cd
+2
View File
@@ -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)