diff --git a/app/cron.mjs b/app/cron.mjs index 5f72616..ed0e42d 100644 --- a/app/cron.mjs +++ b/app/cron.mjs @@ -5,7 +5,7 @@ import { sendTweets } from "./twitter/index.mjs"; export default function() { new CronJob('5,20,35,50 * * * *', warmCaches, null, true); - new CronJob('10 0 * * * *', async () => { + new CronJob('10 0,1,2,5,10,15,30,45 * * * *', async () => { await updateAll(); await sendTweets(); }, null, true);