fix: init value

This commit is contained in:
Cory Dransfeldt 2024-03-30 18:42:44 -07:00
parent 47adec9027
commit 007aa62434

View file

@ -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]) {