mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-22 03:07:50 +01:00
fix check update interval too short
This commit is contained in:
parent
49ba5fb1b2
commit
210a0d414c
@ -28,7 +28,7 @@ exports.startInterval = () => {
|
||||
};
|
||||
|
||||
check();
|
||||
interval = setInterval(check, 3600 * 48);
|
||||
interval = setInterval(check, 3600 * 1000 * 48);
|
||||
};
|
||||
|
||||
exports.enableCheckUpdate = async (value) => {
|
||||
|
Loading…
Reference in New Issue
Block a user