chore: emoji updates
This commit is contained in:
parent
ef34fc3c42
commit
19f2a00894
1 changed files with 2 additions and 1 deletions
|
@ -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 '🫨'
|
||||
|
|
Reference in a new issue