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:
parent
2bd8d2ac7a
commit
0380e88bb0
1 changed files with 1 additions and 1 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue