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.
This commit is contained in:
2026-02-04 17:06:24 -05:00
parent 3e5c57766b
commit 3403f7a8c9

View File

@@ -1537,14 +1537,6 @@
const url = searchUrls[provider] || searchUrls['default']; const url = searchUrls[provider] || searchUrls['default'];
window.open(url, '_blank'); 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() { async function clearCache() {
if (!confirm('Clear all cached playlist data?')) return; if (!confirm('Clear all cached playlist data?')) return;