Fixes sonarr cube again

This commit is contained in:
Trenton H
2026-01-12 08:45:15 -08:00
parent 5b7e1e0ba5
commit e35bb67709

View File

@@ -137,7 +137,7 @@ class FileStabilityTracker:
to_remove: list[Path] = []
to_yield: list[Path] = []
for path, tracked in list(self._tracked.items()):
for path, tracked in self._tracked.items():
time_since_event = current_time - tracked.last_event_time
if time_since_event < self.stability_delay: