V0.27.3.250618_alpha:添加了认证状态检查

This commit is contained in:
jinchao 2025-06-18 13:48:04 +08:00
parent bd1c5ea1c7
commit b0c49a7d8c
2 changed files with 5 additions and 0 deletions

Binary file not shown.

View File

@ -710,6 +710,11 @@
// 初始检查认证状态
checkAuth();
// 每5分钟检查一次认证状态
setInterval(() => {
checkAuth();
}, 5 * 60 * 1000); // 5分钟
});
</script>
</body>