fix: reference

This commit is contained in:
Cory Dransfeldt 2024-09-24 12:48:02 -07:00
parent 6ca026af0b
commit ad81eb050c
No known key found for this signature in database
3 changed files with 9 additions and 9 deletions

View file

@ -70,7 +70,7 @@ export default {
if (rating) processedEntry.rating = rating
if (tags) processedEntry.tags = tags
if (type === 'album-release' && artist) processedEntry.title = `${title} by ${artist}`
if (type === 'album-release' && artist) processedEntry.title = `${title} by ${artist['name']}`
posts.push(processedEntry)
})