Skip to content

Commit 18d1012

Browse files
committed
disable event announcement cron
1 parent 84498b2 commit 18d1012

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/calendar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ export async function execute(client: Client) {
443443
try {
444444
// Check events on a schedule
445445
cron.schedule("0 8 * * *", async () => hookLogic(client, preWebhook));
446-
cron.schedule("0 12 * * *", async () => hookLogic(client, webhook));
446+
// cron.schedule("0 12 * * *", async () => hookLogic(client, webhook));
447447
// Catch any errors
448448
} catch (err: unknown) {
449449
// silences eslint. type safety with our errors basically

0 commit comments

Comments
 (0)