Fix schedule_next_recheck_at

This commit is contained in:
Vitaliy Filippov
2026-05-18 01:17:56 +03:00
parent 4ed17b7070
commit f504e356d5
+1 -1
View File
@@ -719,7 +719,7 @@ class Mon
this.next_recheck_timer = null; this.next_recheck_timer = null;
this.next_recheck_at = 0; this.next_recheck_at = 0;
this.schedule_recheck(); this.schedule_recheck();
}, now-this.next_recheck_at); }, (this.next_recheck_at-now)*1000);
} }
} }