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 "ðŸ˜Ē";