Compare commits

...

1 Commits

Author SHA1 Message Date
Vxrtrauter 5a9d9067b9 fix exception spam 2026-01-13 21:35:03 +01:00
+2 -5
View File
@@ -88,9 +88,6 @@ def update_log(shutdown_event):
update_download_completed_by_hash(d.info_hash, True)
updated.add(d.gid)
state.downloads = [d for d in state.aria2.get_downloads() if d.is_active and not d.is_metadata]
except Exception as e:
if state.debug:
print(f"Error in update_log: {e}")
import traceback
traceback.print_exc()
except Exception:
pass
time.sleep(5)