From 75614684bf21282d1748e2ad4058244a4a56add6 Mon Sep 17 00:00:00 2001 From: He Hang Date: Tue, 2 Apr 2024 22:28:23 +0800 Subject: [PATCH] Fix update lyric on remote mode --- web/src/stores/play.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/stores/play.ts b/web/src/stores/play.ts index 85f17c3..c583ce1 100644 --- a/web/src/stores/play.ts +++ b/web/src/stores/play.ts @@ -490,6 +490,7 @@ export const usePlayStore = defineStore('play', { } if (music) { this.setCurrentMusic(music, noSave); + lyricManager.updateLyric(this.music); this.setTitle(); return; }