Fix first refresh watchlist auto-download backlog

This commit is contained in:
Dymas
2026-05-26 19:37:20 +02:00
parent bf4fdc79f5
commit 7a0fa024ed
5 changed files with 63 additions and 5 deletions
-2
View File
@@ -2411,8 +2411,6 @@ def queue_watchlist_auto_download(item, refresh_source="manual"):
return {"queued": False, "reason": "config_disabled"}
if normalize_watchlist_category(item.get("category")) != "watching":
return {"queued": False, "reason": "category"}
if not item.get("previous_last_checked"):
return {"queued": False, "reason": "initial_refresh"}
mode = str(item.get("auto_download_mode") or config.get("auto_download_mode") or "dub").strip().lower()
quality = str(item.get("auto_download_quality") or config.get("auto_download_quality") or "best").strip().lower()