We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 142a0c5 commit ff57d00Copy full SHA for ff57d00
1 file changed
src/core/player/LyricManager.ts
@@ -918,6 +918,7 @@ class LyricManager {
918
lyricData = await this.handleStreamingLyric(song);
919
// 排除内容
920
lyricData = this.handleLyricExclude(lyricData);
921
+ lyricData = await this.applyChineseVariant(lyricData);
922
this.setFinalLyric(lyricData, req);
923
return;
924
}
@@ -930,6 +931,7 @@ class LyricManager {
930
931
if (settingStore.enableExcludeLocalLyrics) {
932
933
934
935
} else if (song.path) {
936
lyricData = await this.handleLocalLyric(song.path);
937
// 排除本地歌词内容
0 commit comments