From 2123fe60dde28a0f5ab09711ffcb2f66deda88fc Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Wed, 2 Aug 2017 19:29:55 -0700 Subject: [PATCH] Fix cron time --- src/splatoon/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/splatoon/run.js b/src/splatoon/run.js index 17039d3..08160c6 100644 --- a/src/splatoon/run.js +++ b/src/splatoon/run.js @@ -4,6 +4,6 @@ const splatnet = require('./splatnet'); console.info('Starting periodic tasks...'); // Run every day at 2min 30sec after the hour -new CronJob('02 24 * * * *', () => { +new CronJob('30 2 * * * *', () => { splatnet.update(); }, null, true);