diff --git a/utils/zbpro.js b/utils/zbpro.js index 6fdf8f1..6f594b3 100644 --- a/utils/zbpro.js +++ b/utils/zbpro.js @@ -143,7 +143,7 @@ async function getAllURL() { const channelURLTXT = `${channel?.title},${decryptURL}` if (sumChannel == 0) { // 更新时间 - const updateTime = new Date(result?.timestamp) + const updateTime = new Date(result?.timestamp + (8 * 60 * 60 * 1000)) const updateTimeStr = `更新日期: ${updateTime.getFullYear()}-${updateTime.getMonth() + 1}-${updateTime.getDate()} ${String(updateTime.getHours()).padStart(2, "0")}:${String(updateTime.getMinutes()).padStart(2, "0")}:${String(updateTime.getSeconds()).padStart(2, "0")}` channelsURLM3U.push(`#EXTINF:-1 tvg-id="${channel?.title}" tvg-name="${channel?.title}" tvg-logo="" group-title="${channel?.province}",${updateTimeStr}\n${decryptURL}`) channelsURLTXT.push(`更新日期: ${updateTimeStr},${decryptURL}`) @@ -155,7 +155,7 @@ async function getAllURL() { } } - const updateTime = new Date(result?.timestamp) + const updateTime = new Date(result?.timestamp + (8 * 60 * 60 * 1000)) console.log(`文件日期: ${updateTime.getFullYear()}-${updateTime.getMonth() + 1}-${updateTime.getDate()} ${String(updateTime.getHours()).padStart(2, "0")}:${String(updateTime.getMinutes()).padStart(2, "0")}:${String(updateTime.getSeconds()).padStart(2, "0")}`) }) if (status != 0) {