From 19f2a00894b3b5d37a0d948be6052aa9d08c1574 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 7 Dec 2023 11:42:39 -0800 Subject: [PATCH] chore: emoji updates --- netlify/edge-functions/now-playing.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index 6c71cf61..b885df91 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -1,6 +1,7 @@ const emojiMap = (genre, artist) => { const DEFAULT = '🎧' if (artist === 'Autopsy') return '🧟' + if (artist === 'Black Flag') return '🏴' if (artist === 'Bruce Springsteen') return 'πŸ‡ΊπŸ‡Έ' if (artist === 'David Bowie') return 'πŸ‘¨πŸ»β€πŸŽ€' if (artist === 'Full of Hell & Nothing') return '🫨🎸' @@ -12,7 +13,7 @@ const emojiMap = (genre, artist) => { if (!genre) return DEFAULT if (genre.includes('death metal')) return 'πŸ’€' - if (genre.includes('black metal')) return 'πŸͺ¦' + if (genre.includes('black metal') || genre.includes('blackgaze')) return 'πŸͺ¦' if (genre.includes('metal')) return '🀘' if (genre.includes('emo') || genre.includes('blues')) return '😒' if (genre.includes('grind') || genre.includes('powerviolence')) return '🫨'