From 841ad42fdda99443a4a689c821580ed8c259d96f Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Sat, 18 Apr 2026 02:10:12 -0700 Subject: [PATCH] Fix MusicBrainz tab not appearing in enhanced search MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Source fetch list was hardcoded without musicbrainz — tabs only showed for sources that were pre-fetched in the parallel search loop. --- webui/static/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/static/script.js b/webui/static/script.js index fc19122a..8193eb39 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -8698,7 +8698,7 @@ function initializeSearchModeToggle() { // Fire ALL source fetches immediately in parallel with the primary endpoint. // Don't guess which is primary — the main endpoint response will tell us. // If an alternate duplicates the primary, it just overwrites with same data. - for (const srcName of ['spotify', 'itunes', 'deezer', 'discogs', 'hydrabase', 'youtube_videos']) { + for (const srcName of ['spotify', 'itunes', 'deezer', 'discogs', 'hydrabase', 'youtube_videos', 'musicbrainz']) { _fetchAlternateSource(srcName, query); }