From 3403f7a8c942153e875e35bfb46d2078046c3b3c Mon Sep 17 00:00:00 2001 From: Josh Patra Date: Wed, 4 Feb 2026 17:06:24 -0500 Subject: [PATCH] fix: remove orphaned code causing JavaScript syntax error Removed duplicate/orphaned lines after searchProvider() function that were causing 'expected expression, got }' syntax error in admin UI. --- allstarr/wwwroot/index.html | 8 -------- 1 file changed, 8 deletions(-) diff --git a/allstarr/wwwroot/index.html b/allstarr/wwwroot/index.html index 3e9d5fc..3120bdf 100644 --- a/allstarr/wwwroot/index.html +++ b/allstarr/wwwroot/index.html @@ -1537,14 +1537,6 @@ const url = searchUrls[provider] || searchUrls['default']; window.open(url, '_blank'); } - setTimeout(fetchPlaylists, 3000); - } else { - showToast(data.error || 'Failed to match tracks', 'error'); - } - } catch (error) { - showToast('Failed to match tracks', 'error'); - } - } async function clearCache() { if (!confirm('Clear all cached playlist data?')) return;