From 79e95a6d1d506a8dd72f6b26e2bcdefcc31bbcbb Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 10 Oct 2023 10:31:12 -0700 Subject: [PATCH] chore: revert some normalization --- netlify/edge-functions/now-playing.js | 31 ++------------------------- 1 file changed, 2 insertions(+), 29 deletions(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index a4f17944..a096bbf1 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -1,30 +1,3 @@ -const artistAliases = { - "aliases": [ - { - "artist": "Aesop Rock", - "aliases": ["Aesop Rock & Homeboy Sandman", "Aesop Rock & Blockhead"] - }, - { - "artist": "Fen", - "aliases": ["Sleepwalker & Fen"] - }, - { - "artist": "Osees", - "aliases": ["OCS", "The Ohsees", "Thee Oh Sees", "Thee Oh See's"] - }, - { - "artist": "Tom Waits", - "aliases": ["Tom Waits & Crystal Gayle", "Crystal Gayle"] - } - ] -} - -const aliasArtist = (artist) => { - const aliased = artistAliases.aliases.find((alias) => alias.aliases.includes(artist)) - if (aliased) artist = aliased.artist - return artist -} - export default async () => { // eslint-disable-next-line no-undef const API_APPLE_MUSIC_DEVELOPER_TOKEN = Netlify.env.get('API_APPLE_MUSIC_DEVELOPER_TOKEN') @@ -75,9 +48,9 @@ export default async () => { const track = trackRes.data?.[0]['attributes'] return Response.json({ - artist: aliasArtist(track['artistName']), + artist: track['artistName'], title: track['name'], - text: `🎧 ${track['name']} by ${aliasArtist(track['artistName'])}`, + text: `🎧 ${track['name']} by ${track['artistName']}`, }) }