From a0db37cf12531d6af906c01d4870442c91fc100e Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 2 Apr 2024 18:25:34 -0700 Subject: [PATCH] chore: debug --- api/scrobble.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/api/scrobble.js b/api/scrobble.js index 6f559518..1a8e8c08 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -91,9 +91,13 @@ export default async (request) => { throw new Error('Something went wrong with the MusicBrainz endpoint.'); }).catch(err => { console.log(err); - return {} + return { + mbid: '', + genre: '', + image: `https://cdn.coryd.dev/artists/${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}.jpg` + } }); - const genre = genreRes['genres'].sort((a, b) => b.count - a.count)[0]?.['name'] || ''; + const genre = genreRes['genres']?.sort((a, b) => b.count - a.count)[0]?.['name'] || ''; const artistObj = { mbid, genre,