diff --git a/src/updater/cron.js b/src/updater/cron.js index 31d0575..3849056 100644 --- a/src/updater/cron.js +++ b/src/updater/cron.js @@ -5,8 +5,8 @@ const twitter = require('./twitter'); console.info('Starting periodic tasks...'); -// Run every hour at 30sec after the hour -new CronJob('30 0 * * * *', async () => { +// Run every hour at 10sec after the hour +new CronJob('10 0 * * * *', async () => { await update.updateAll(); await twitter.maybePostTweets(); }, null, true);