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.
This commit is contained in:
Broque Thomas 2026-04-18 23:52:48 -07:00
parent 2bd8d2ac7a
commit 0380e88bb0

View file

@ -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) => {