From 5e62229d0024630f0c250317f3e6effab61ba553 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Fri, 17 Apr 2026 11:15:19 -0700 Subject: [PATCH] Navigate to downloads page when wishlist is already processing Clicking the Download Wishlist button while auto-processing was active only showed a toast telling the user to check the Downloads page. Now navigates there directly so progress is immediately visible. --- webui/static/script.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webui/static/script.js b/webui/static/script.js index dc4991f4..03583af5 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -40739,7 +40739,9 @@ async function _nebulaDownload() { if (statsResp.ok) { const stats = await statsResp.json(); if (stats.is_auto_processing) { - showToast('Wishlist is currently being auto-processed. Check the Downloads page for progress.', 'info'); + // Navigate to downloads page so the user can see progress + navigateToPage('active-downloads'); + showToast('Wishlist is currently being auto-processed', 'info'); return; } }