From 007aa6243433d9ed3a20b0759a80332d14a485cf Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 30 Mar 2024 18:42:44 -0700 Subject: [PATCH] fix: init value --- api/scrobble.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/scrobble.js b/api/scrobble.js index d20d6b4b..91ed13fe 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -59,7 +59,7 @@ export default async (request) => { const artistSanitizedKey = `${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}` const albumSanitizedKey = `${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(album.replace(/[:\/\\,'']+/g , '').replace(/\s+/g, '-').toLowerCase())}` - let artistInfo = {} + let artistInfo = artistsMap[artistSanitizedKey] // if there is no artist blob, populate one if (!artistsMap[artistSanitizedKey]) {