diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index 850ba077..460dd1e6 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -9,18 +9,6 @@ const emojiMap = (genre, artist) => { if (artist === 'Panopticon') return 'πŸͺ•πŸͺ¦' if (artist === 'Taylor Swift') return 'πŸ‘ΈπŸΌ' - // mbid mismatches - if (artist === 'AFI') return '✊' - if (artist === 'Carpe Noctem') return 'πŸͺ¦' - if (artist === 'Cruciamentum') return 'πŸ’€' - if (artist === 'Edge of Sanity') return 'πŸ’€' - if (artist === 'Fumes') return 'πŸ’€' - if (artist === 'Ghastly') return 'πŸ’€' - if (artist === 'Krallice') return 'πŸͺ¦' - if (artist === 'Osees') return 'πŸ’Š' - if (artist === 'Pigment Vehicle') return '✊' - if (artist === 'Worm') return 'πŸ’€' - // early return for bad input if (!genre) return DEFAULT @@ -140,8 +128,22 @@ export default async () => { }).catch() const trackData = await trackRes.json() const track = trackData['recenttracks']['track'][0] - const mbid = track['artist']['mbid'] + const artist = track['artist']['#text'] + let mbid = track['artist']['mbid'] let genre = '' + + // mbid mismatches + if (artist === 'AFI') mbid = '1c3919b2-43ca-4a4a-935d-9d50135ec0ef' + if (artist === 'Carpe Noctem') mbid = 'aa349181-1cb9-4340-bb3f-82eefba3e697' + if (artist === 'Cruciamentum') mbid = '9a783663-db0c-4237-a3a9-afe72d055ddc' + if (artist === 'Edge of Sanity') mbid = '82d1972f-f815-480d-ba78-9873b799bdd1' + if (artist === 'Fumes') mbid = 'a5139ca1-f4f3-4bea-ae4c-ae4e2efd857d' + if (artist === 'Ghastly') mbid = '70f969df-7fc1-421e-afad-678c0bbd1aea' + if (artist === 'Krallice') mbid = 'b4e4b359-76a3-447e-be1d-80a24887134e' + if (artist === 'Osees') mbid = '194272cc-dcc8-4640-a4a6-66da7d250d5c' + if (artist === 'Pigment Vehicle') mbid = 'c421f86c-991c-4b2d-9058-516375903deb' + if (artist === 'Worm') mbid = '6313658e-cd68-4c81-9778-17ce3825748e' + const artistUrl = mbid ? `https://musicbrainz.org/artist/${mbid}` : `https://musicbrainz.org/search?query=${track['artist']['#text'].replace(