diff --git a/src/aura/init/main/ipcModules/fsIpcHandler.js b/src/aura/init/main/ipcModules/fsIpcHandler.js
index cdb45b0..2759376 100755
--- a/src/aura/init/main/ipcModules/fsIpcHandler.js
+++ b/src/aura/init/main/ipcModules/fsIpcHandler.js
@@ -123,6 +123,7 @@ const composableFunctions = {
failedTemplate.message =
"Request error: Unexpected error while downloading file";
failedTemplate.errorObj = e;
+ console.error(`[HugoAura / IPC / FS / ERROR] Error downloading file from ${url}, errorObj:`, e);
progressCallback(failedTemplate);
global.__HUGO_AURA__.fsTasks?.downloadTasks.delete(taskId);
return false;
diff --git a/src/aura/init/main/ipcModules/plsIpcHandler.js b/src/aura/init/main/ipcModules/plsIpcHandler.js
index cffd88b..d147c4b 100755
--- a/src/aura/init/main/ipcModules/plsIpcHandler.js
+++ b/src/aura/init/main/ipcModules/plsIpcHandler.js
@@ -427,10 +427,6 @@ const applyPlsIpcHandler = (ipcMain) => {
async (_event, arg) => {
const logHeader = "[HugoAura / IPC / PLS] 检查日志以获取详细信息
+ ${ret.errorObj ? ret.errorObj : "检查日志以获取详细信息"}
+ 检查日志以获取详细信息 您可以尝试手动停止 PLS 服务 ${
+ stopRet.errorObj
+ ? stopRet.errorObj
+ : "检查日志以获取详细信息"
+ }
+ 您可以尝试手动停止 PLS 服务
+ ${
info.message ? info.message : "检查日志以获取错误信息"
- }
+ ${info.errorObj ? info.errorObj : ""} +
`, true, true, 5000 diff --git a/src/core/hook.js b/src/core/hook.js index 96b2457..ede29ac 100755 --- a/src/core/hook.js +++ b/src/core/hook.js @@ -19,7 +19,7 @@ if (!global.__HUGO_AURA__) { if (!global.__HUGO_AURA_API__) { /** @type {import("../aura/types/shared/global").GlobalHugoAuraApiInfo} */ const __HUGO_AURA_API__ = { - baseUrl: "https://api-aura.xwx.li", + baseUrl: "https://api.aura.vim.moe", plsUpdate: "/api/v1/getPLSLatestVersion", auraUpdate: "/api/v1/getAuraLatestVersion", };