diff --git a/src/stores/usePlayStore.ts b/src/stores/usePlayStore.ts index 5126338..7c24ff9 100644 --- a/src/stores/usePlayStore.ts +++ b/src/stores/usePlayStore.ts @@ -28,6 +28,7 @@ export const usePlayStore = defineStore('player', () => { ) => { const newQueue = [] for (const item of queue) { + console.log(item.song.artists ?? item.song.artistes) newQueue.push({ url: item.song.sourceUrl ?? '', metadata: { @@ -35,6 +36,7 @@ export const usePlayStore = defineStore('player', () => { artist: artistsOrganize( item.song.artists ?? item.song.artistes ?? [], ), + album: item.album?.name, artwork: [ { src: item.album?.coverUrl ?? '',