Fix cron time

This commit is contained in:
Matt Isenhower 2017-08-02 19:29:55 -07:00
parent 95c14d71a7
commit 2123fe60dd

View File

@ -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);