fix: init value
This commit is contained in:
parent
47adec9027
commit
007aa62434
1 changed files with 1 additions and 1 deletions
|
@ -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]) {
|
||||
|
|
Reference in a new issue