chore: search mb instead of rym for consistency when messing mbid
This commit is contained in:
parent
cbcfda582f
commit
034c98c027
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ module.exports = async function () {
|
|||
.toLowerCase()}.jpg`,
|
||||
url: album['mbid']
|
||||
? `https://musicbrainz.org/album/${album['mbid']}`
|
||||
: `https://rateyourmusic.com/search?searchtype=l&searchterm=${encodeURI(album['name'])}`,
|
||||
: `https://musicbrainz.org/search?query=${encodeURI(album['name'])}&type=release_group`,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ module.exports = async function () {
|
|||
'https://cdn.coryd.dev/artists/missing-artist.jpg',
|
||||
url: artist['mbid']
|
||||
? `https://musicbrainz.org/artist/${artist['mbid']}`
|
||||
: `https://rateyourmusic.com/search?searchterm=${encodeURI(artist['name'])}`,
|
||||
: `https://musicbrainz.org/search?query=${encodeURI(artist['name'])}&type=artist`,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Reference in a new issue