fix: 测试时十分钟改为一分钟忘记改回去了~

This commit is contained in:
2025-09-12 20:52:43 +08:00
parent fd12a6359d
commit 805783c85b

View File

@@ -63,7 +63,7 @@ const version = import.meta.env.VITE_APP_VERSION || '获取版本失败!'
const updateInfo = ref<UpdateCheckOut | null>(null)
const backendUpdateInfo = ref<VersionOut | null>(null)
const POLL_MS = 1 * 60 * 1000 // 10 分钟
const POLL_MS = 10 * 60 * 1000 // 10 分钟
let pollTimer: number | null = null
const polling = ref(false)