diff --git a/Release/database/XNSim.db b/Release/database/XNSim.db index b8e70aa..e87271c 100644 Binary files a/Release/database/XNSim.db and b/Release/database/XNSim.db differ diff --git a/XNSimHtml/main.html b/XNSimHtml/main.html index cc47c40..46e6158 100644 --- a/XNSimHtml/main.html +++ b/XNSimHtml/main.html @@ -710,6 +710,11 @@ // 初始检查认证状态 checkAuth(); + + // 每5分钟检查一次认证状态 + setInterval(() => { + checkAuth(); + }, 5 * 60 * 1000); // 5分钟 });