From 187e008bdcf3e8a443f2c18742e19645048317d2 Mon Sep 17 00:00:00 2001 From: Wizzard Date: Tue, 8 Aug 2023 18:53:31 -0400 Subject: [PATCH] 3 hour restart timer --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 3c8470e..e02853a 100644 --- a/main.js +++ b/main.js @@ -7,7 +7,7 @@ const config = JSON.parse(fs.readFileSync("config.json")); const updateInterval = 5000; const retryInterval = 30000; -const maxUptime = 6 * 60 * 60 * 1000; // Maximum uptime before restart (6 hours) +const maxUptime = 3 * 60 * 60 * 1000; // Maximum uptime before restart (3 hours) let rp; let startTime = Date.now();