更新 MusicLyrics.lua

This commit is contained in:
2025-11-16 19:35:10 +08:00
parent 0e7c4b3e87
commit f6e59defb8

View File

@@ -217,7 +217,7 @@ local function displayLyrics(url, notzh, fontType, colorsConfig)
-- 获取歌词数据 -- 获取歌词数据
local response = http.get(url) local response = http.get(url)
if not response then if not response then
print("1 无法连接到服务器 URL: "..URL) print("1 无法连接到服务器 URL: "..url)
return return
end end
@@ -233,7 +233,7 @@ local function displayLyrics(url, notzh, fontType, colorsConfig)
-- 解析JSON数据 -- 解析JSON数据
local data = textutils.unserialiseJSON(content) local data = textutils.unserialiseJSON(content)
if not data or not data.lrc or not data.lrc.lyric then if not data or not data.lrc or not data.lrc.lyric then
print("2 无法解析歌词数据") print("2 无法解析歌词数据 URL: "..url)
return return
end end
@@ -245,7 +245,7 @@ local function displayLyrics(url, notzh, fontType, colorsConfig)
end end
if #lyrics == 0 and #tlyrics == 0 then if #lyrics == 0 and #tlyrics == 0 then
print("没有找到有效歌词") print("3 没有找到有效歌词 URL: "..url)
return return
end end
@@ -296,7 +296,7 @@ local function displayLyrics(url, notzh, fontType, colorsConfig)
end end
if #lyricPairs == 0 then if #lyricPairs == 0 then
print("没有找到匹配的歌词对") print("没有找到匹配的歌词对 URL: "..url)
return return
end end