From 0380e88bb05747453957e8bf708a8413aa3d37a4 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Sat, 18 Apr 2026 23:52:48 -0700 Subject: [PATCH] Fix MusicBrainz tab missing from enhanced search results MusicBrainz was returned by the backend as an alternate source but the frontend's orderedSources list didn't include it, so it was never fetched. --- 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 75ec95d7..524fbe69 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -9227,7 +9227,7 @@ function initializeSearchModeToggle() { // Fetch metadata sources first, then YouTube last so it does not compete // with the primary artist/album/track results for early attention. - const orderedSources = ['spotify', 'itunes', 'deezer', 'discogs', 'hydrabase', 'youtube_videos'] + const orderedSources = ['spotify', 'itunes', 'deezer', 'discogs', 'musicbrainz', 'hydrabase', 'youtube_videos'] .filter(src => alternateSources.includes(src) && src !== _activeSearchSource); orderedSources.forEach((src, index) => {