From 7ea2d5d8a1fc3c7bff3b272507b3840293ff2cf1 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 Nov 2023 12:58:15 -0800 Subject: [PATCH] fix: logic for artists w/no genre --- netlify/edge-functions/now-playing.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index 1efb780e..b14f25cd 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -1,6 +1,5 @@ const emojiMap = (genre, artist) => { const DEFAULT = '🎧' - if (!genre) return DEFAULT // early return for bad input if (artist === 'David Bowie') return 'πŸ‘¨πŸ»β€πŸŽ€' if (artist === 'Minor Threat') return 'πŸ‘¨πŸ»β€πŸ¦²' if (artist === 'Bruce Springsteen') return 'πŸ‡ΊπŸ‡Έ' @@ -9,6 +8,9 @@ const emojiMap = (genre, artist) => { // mbid mismatches if (artist === 'Ghastly') return 'πŸ’€' + // early return for bad input + if (!genre) return DEFAULT + if (genre.includes('death metal')) return 'πŸ’€' if (genre.includes('black metal')) return 'πŸͺ¦' if (genre.includes('metal')) return '🀘'