chore: patch mbid edge case
This commit is contained in:
parent
40fb8b9497
commit
42a4b75e54
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,10 @@ const emojiMap = (genre, artist) => {
|
|||
if (artist === 'Minor Threat') return '👨🏻🦲'
|
||||
if (artist === 'Bruce Springsteen') return '🇺🇸'
|
||||
if (artist === 'Taylor Swift') return '👸🏼'
|
||||
|
||||
// mbid mismatches
|
||||
if (artist === 'Ghastly') return '💀'
|
||||
|
||||
if (genre.includes('death metal')) return '💀'
|
||||
if (genre.includes('black metal')) return '🪦'
|
||||
if (genre.includes('metal')) return '🤘'
|
||||
|
|
Reference in a new issue