From f504e356d5649fbd9d78e39afdefda24886d7e21 Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Wed, 13 May 2026 02:01:45 +0300 Subject: [PATCH] Fix schedule_next_recheck_at --- mon/mon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mon/mon.js b/mon/mon.js index b1ec7235..1338ee89 100644 --- a/mon/mon.js +++ b/mon/mon.js @@ -719,7 +719,7 @@ class Mon this.next_recheck_timer = null; this.next_recheck_at = 0; this.schedule_recheck(); - }, now-this.next_recheck_at); + }, (this.next_recheck_at-now)*1000); } }