From 0d168bf6f1d05d607f4571932d498a292721438e Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Wed, 12 Nov 2025 19:36:39 -0800 Subject: [PATCH] chore: revert to top of hour --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 4445698..9172e01 100644 --- a/src/index.ts +++ b/src/index.ts @@ -24,7 +24,7 @@ const analytics = new DiscordAnalytics(bot, logger); bot.once(Events.ClientReady, () => { void logger.log("debug", "Client is ready!"); analytics.startCron(); - const hourly = "32 * * * *"; + const hourly = "0 * * * *"; scheduleJob("reminders", hourly, () => { void sendReminders(bot, database); });