Update data closer to the top of the hour

This will help make Salmon Run times show up sooner.
This commit is contained in:
Matt Isenhower
2017-08-06 10:16:01 -07:00
parent 29b3a6604d
commit 29310da3f2

View File

@@ -3,7 +3,7 @@ const splatnet = require('./splatnet');
console.info('Starting periodic tasks...');
// Run every day at 2min 30sec after the hour
new CronJob('30 2 * * * *', () => {
// Run every day at 0min 30sec after the hour
new CronJob('30 0 * * * *', () => {
splatnet.update();
}, null, true);