From 4b40f8950c6bbb742e7606526436293c9a76c27d Mon Sep 17 00:00:00 2001 From: MattIPv4 Date: Fri, 1 Dec 2023 00:00:43 +0000 Subject: [PATCH] Post summary at 10pm for staging --- src/scheduled/summary.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scheduled/summary.ts b/src/scheduled/summary.ts index 83d70cb..2303811 100644 --- a/src/scheduled/summary.ts +++ b/src/scheduled/summary.ts @@ -6,10 +6,10 @@ import { bold, italic, money, number, timeSince } from "../util/format"; import causesBreakdown from "../util/causes"; import type { Env } from "../env"; -// Aim to post at 23:00 UTC every day +// Aim to post at 22:00 UTC every day const target = () => { const now = getNow(); - now.setUTCHours(23, 0, 0, 0); + now.setUTCHours(22, 0, 0, 0); return now; };