fix(lyric): 关闭在线 TTML 歌词后不获取本地 TTML 歌词了

This commit is contained in:
MoYingJi
2025-11-12 10:05:10 +08:00
parent e40343f91f
commit 3218ab05f1

View File

@@ -35,7 +35,7 @@ export const getLyricData = async (id: number) => {
// 并发请求:如果 TTML 先到并且有效,则直接采用 TTML不再等待或覆盖为 LRC
const lrcPromise = getLyric("lrc", songLyric);
const ttmlPromise = settingStore.enableTTMLLyric ? getLyric("ttml", songLyricTTML) : null;
const ttmlPromise = settingStore.enableTTMLLyric ? getLyric("ttml", songLyricTTML) : getLyric("ttml");
let settled = false; // 是否已采用某一种歌词并结束加载状态
let ttmlAdopted = false; // 是否已采用 TTML