From 44a52d2ba8e1c385a260ba26139c3eaaf9a86028 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Wed, 23 Nov 2022 10:50:48 -0700 Subject: [PATCH] Change update delay to 1 minute --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index ba025af..c27842b 100644 --- a/index.js +++ b/index.js @@ -145,7 +145,7 @@ function updateServerList() { }; // Update master list every 5 minutes -setInterval(updateMasterList, 30 * 1000); +setInterval(updateMasterList, 60 * 1000); updateMasterList(); app.get('/check', (req, res) => { @@ -212,4 +212,4 @@ app.get('/', (req, res) => { }); -app.listen(port, () => console.log(`Listening on port ${port}!`)); \ No newline at end of file +app.listen(port, () => console.log(`Listening on port ${port}!`));