chore: update emoji map

This commit is contained in:
Cory Dransfeldt 2023-08-24 19:48:40 -07:00
parent 59592383f1
commit 0d18f6bfa3
No known key found for this signature in database

View file

@ -20,7 +20,8 @@ const emojiMap = (genre, artist) => {
if (genre.includes('jazz')) return '🎺'
if (genre.includes('psychedelic')) return '💊'
if (genre.includes('dance') || genre.includes('electronic')) return '💻'
if (genre.includes('alternative') || genre.includes('rock')) return '🎸'
if (genre.includes('alternative') || genre.includes('rock') || genre.includes('shoegaze'))
return '🎸'
return '🎧'
}