From e2b03e5a078960df60c282873ab06eac4cb0fb9c Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt <coryd@hey.com> Date: Mon, 4 Mar 2024 16:07:17 -0800 Subject: [PATCH] fix: genre mapping --- api/now-playing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/now-playing.js b/api/now-playing.js index 0cd77d15..5eec9f0a 100644 --- a/api/now-playing.js +++ b/api/now-playing.js @@ -20,7 +20,7 @@ const emojiMap = (genre, artist) => { // early return for bad input if (!genre) return DEFAULT; - if (genre.includes("death metal")) return "ð"; + if (genre.includes("death metal") || genre.includes("death-doom")) return "ð"; if (genre.includes("black metal") || genre.includes("blackgaze")) return "ðŠĶ"; if (genre.includes("metal")) return "ðĪ"; if (genre.includes("emo") || genre.includes("blues")) return "ðĒ";