This commit is contained in:
pricema 2025-10-07 16:54:38 +08:00
parent fa3aae8942
commit 0fd6b12e7a
1 changed files with 20 additions and 20 deletions

View File

@ -214,24 +214,24 @@ const handleGetMusicLyric = async (source, musicInfo) => {
} }
// 检查源脚本是否有更新 // 检查源脚本是否有更新
// const checkUpdate = async () => { const checkUpdate = async () => {
// const request = await httpFetch(`${API_URL}/script?key=${API_KEY}&checkUpdate=${SCRIPT_MD5}`, { const request = await httpFetch(`${API_URL}/script?key=${API_KEY}&checkUpdate=${SCRIPT_MD5}`, {
// method: 'GET', method: 'GET',
// headers: { headers: {
// 'Content-Type': 'application/json', 'Content-Type': 'application/json',
// 'User-Agent': `${env ? `lx-music-${env}/${version}` : `lx-music-request/${version}`}` 'User-Agent': `${env ? `lx-music-${env}/${version}` : `lx-music-request/${version}`}`
// }, },
// }) })
// const { body } = request const { body } = request
// if (!body || body.code !== 0) console.log('checkUpdate failed') if (!body || body.code !== 0) console.log('checkUpdate failed')
// else { else {
// console.log('checkUpdate success') console.log('checkUpdate success')
// if (body.data != null) { if (body.data != null) {
// globalThis.lx.send(lx.EVENT_NAMES.updateAlert, { log: body.data.updateMsg, updateUrl: body.data.updateUrl }) globalThis.lx.send(lx.EVENT_NAMES.updateAlert, { log: body.data.updateMsg, updateUrl: body.data.updateUrl })
// } }
// } }
// } }
// 生成歌曲信息 // 生成歌曲信息
const musicSources = {} const musicSources = {}
@ -294,6 +294,6 @@ on(EVENT_NAMES.request, ({ action, source, info }) => {
}) })
// 检查更新 // 检查更新
// if (UPDATE_ENABLE) checkUpdate() if (UPDATE_ENABLE) checkUpdate()
// // 向 LX Music 发送初始化成功事件 // 向 LX Music 发送初始化成功事件
// send(EVENT_NAMES.inited, { status: true, openDevTools: DEV_ENABLE, sources: musicSources }) send(EVENT_NAMES.inited, { status: true, openDevTools: DEV_ENABLE, sources: musicSources })