From 8d6d0527dbd1002a4508762ffa5e0b6e1f4f3283 Mon Sep 17 00:00:00 2001 From: alger Date: Mon, 31 Mar 2025 23:07:31 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9Bfix:=20=E4=BF=AE=E5=A4=8D=E6=92=AD?= =?UTF-8?q?=E6=94=BE=E5=88=97=E8=A1=A8=E4=B8=AD=E6=AD=8C=E6=9B=B2=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E6=97=B6=E7=B1=BB=E5=9E=8B=E4=B8=8D=E5=8C=B9=E9=85=8D?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98=EF=BC=8C=E7=A1=AE=E4=BF=9D=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE=E7=A7=BB=E9=99=A4=E6=AD=8C=E6=9B=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/renderer/layout/components/PlayBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/layout/components/PlayBar.vue b/src/renderer/layout/components/PlayBar.vue index 6bed763..a26f28f 100644 --- a/src/renderer/layout/components/PlayBar.vue +++ b/src/renderer/layout/components/PlayBar.vue @@ -521,7 +521,7 @@ const handleDeleteSong = (song: SongResult) => { if (song.id === playMusic.value.id) { playerStore.nextPlay(); } - playerStore.removeFromPlayList(song.id); + playerStore.removeFromPlayList(song.id as number); };