From 456a0d33ec83299754ab52f36cb1ff53362c92d2 Mon Sep 17 00:00:00 2001 From: Astrian Zheng Date: Wed, 3 Sep 2025 16:03:26 +1000 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=92=AD=E6=94=BE?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=B2=A1=E6=9C=89=E5=86=99=E5=85=A5=E4=B8=93?= =?UTF-8?q?=E8=BE=91=E5=90=8D=E7=A7=B0=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/usePlayStore.ts | 2 ++ 1 file changed, 2 insertions(+) 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 ?? '',