From 3f70fac48cdd6376b5f479b705e2ca1aec37d833 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:09:07 -0700 Subject: [PATCH] Allow manual match selection on failed tracks (not just not_found) Failed tracks had candidates from the initial search but no way to retry with a different source. Now clickable like not_found tracks to open the manual match modal. --- webui/static/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webui/static/script.js b/webui/static/script.js index 6cf65577..c26914bc 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -13706,8 +13706,8 @@ function processModalStatusUpdate(playlistId, data) { statusEl.dataset.errorMsg = task.error_message; _ensureErrorTooltipListeners(statusEl); } - // Make not_found cells clickable to review search candidates - if (task.status === 'not_found' && task.has_candidates) { + // Make not_found and failed cells clickable to review search candidates + if ((task.status === 'not_found' || task.status === 'failed') && task.has_candidates) { statusEl.classList.add('has-candidates'); statusEl.dataset.taskId = task.task_id; _ensureCandidatesClickListener(statusEl);