fix: logic for artists w/no genre
This commit is contained in:
parent
372f09517d
commit
7ea2d5d8a1
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,5 @@
|
||||||
const emojiMap = (genre, artist) => {
|
const emojiMap = (genre, artist) => {
|
||||||
const DEFAULT = '🎧'
|
const DEFAULT = '🎧'
|
||||||
if (!genre) return DEFAULT // early return for bad input
|
|
||||||
if (artist === 'David Bowie') return '👨🏻🎤'
|
if (artist === 'David Bowie') return '👨🏻🎤'
|
||||||
if (artist === 'Minor Threat') return '👨🏻🦲'
|
if (artist === 'Minor Threat') return '👨🏻🦲'
|
||||||
if (artist === 'Bruce Springsteen') return '🇺🇸'
|
if (artist === 'Bruce Springsteen') return '🇺🇸'
|
||||||
|
@ -9,6 +8,9 @@ const emojiMap = (genre, artist) => {
|
||||||
// mbid mismatches
|
// mbid mismatches
|
||||||
if (artist === 'Ghastly') return '💀'
|
if (artist === 'Ghastly') return '💀'
|
||||||
|
|
||||||
|
// early return for bad input
|
||||||
|
if (!genre) return DEFAULT
|
||||||
|
|
||||||
if (genre.includes('death metal')) return '💀'
|
if (genre.includes('death metal')) return '💀'
|
||||||
if (genre.includes('black metal')) return '🪦'
|
if (genre.includes('black metal')) return '🪦'
|
||||||
if (genre.includes('metal')) return '🤘'
|
if (genre.includes('metal')) return '🤘'
|
||||||
|
|
Reference in a new issue