Increase ping interval from 10 seconds to 20 seconds

This commit is contained in:
2026-03-09 08:23:08 +01:00
parent 7e84cd3f27
commit 881c8452f1

View File

@@ -13,7 +13,7 @@ class Uptime {
console.log('Starting...');
console.log(`Starting at ${this.startTime.toLocaleDateString()} ${this.startTime.toLocaleTimeString()}`);
this.handle();
setInterval(() => this.handle(), 1000 * 10);
setInterval(() => this.handle(), 1000 * 20);
}
async handle() {