From 5e859d2235bb8c46fca18ba0f8a2ef291cea909a Mon Sep 17 00:00:00 2001 From: acethecreator Date: Tue, 4 Apr 2023 22:29:31 +0100 Subject: [PATCH] updated meetings script maxTime to 30 days --- scripts/build-meetings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-meetings.js b/scripts/build-meetings.js index 81eb9d342f8e..b63a20fd4873 100644 --- a/scripts/build-meetings.js +++ b/scripts/build-meetings.js @@ -18,7 +18,7 @@ async function buildMeetings() { Date.parse(currentTime) - 100 * 24 * 60 * 60 * 1000 ).toISOString(); const timeMax = new Date( - Date.parse(currentTime) + 8 * 24 * 60 * 60 * 1000 + Date.parse(currentTime) + 30 * 24 * 60 * 60 * 1000 ).toISOString(); const eventsList = await calendar.events.list({ calendarId: process.env.CALENDAR_ID,