자동 위치 갱신 5초 명령 복원

This commit is contained in:
seo
2026-07-13 22:15:18 +09:00
parent 5e8b037d99
commit bb070e82c2
3 changed files with 7 additions and 65 deletions
+1 -1
View File
@@ -1102,7 +1102,7 @@ document.getElementById('autoUpdateSwitch').addEventListener('change', () => {
setInterval(() => {
if (!findmydeviceAuthenticated) return;
const switchEl = document.getElementById('autoUpdateSwitch');
if (switchEl?.checked && !switchEl.disabled) {
if (switchEl?.checked || highAccuracyModeActive) {
callDeviceWebhook('auto_tick');
}
}, 5000);