From c4778bc269cc668b87996afc974103d623e96fee Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:46:39 -0800 Subject: [PATCH] wishlist should always 'force download all' --- web_server.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web_server.py b/web_server.py index b84bcab9..40627b96 100644 --- a/web_server.py +++ b/web_server.py @@ -12459,6 +12459,8 @@ def _process_wishlist_automatically(): # Track state management (replicating sync.py) 'permanently_failed_tracks': [], 'cancelled_tracks': set(), + # Wishlist tracks are already known-missing — skip the expensive library check + 'force_download_all': True, # Mark as auto-initiated 'auto_initiated': True, 'auto_processing_timestamp': time.time(), @@ -13109,7 +13111,8 @@ def start_wishlist_missing_downloads(): # Track state management (replicating sync.py) 'permanently_failed_tracks': [], 'cancelled_tracks': set(), - 'force_download_all': force_download_all # Pass the force flag to the batch + # Wishlist tracks are already known-missing — always skip the library check + 'force_download_all': True } # Submit the wishlist processing job using the same processing function