From 8c7322b0dcebc86836298e89f58c024a64bc2b81 Mon Sep 17 00:00:00 2001 From: nicolas Date: Mon, 7 Jun 2021 09:24:44 +0200 Subject: [PATCH] Send mails to all users --- lib/calendarClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/calendarClient.ts b/lib/calendarClient.ts index bb2346bb..ec3dc935 100644 --- a/lib/calendarClient.ts +++ b/lib/calendarClient.ts @@ -239,7 +239,7 @@ const GoogleCalendar = (credential): CalendarApiAdapter => { calendarId: 'primary', eventId: uid, sendNotifications: true, - sendUpdates: true, + sendUpdates: 'all', }, function (err, event) { if (err) { console.log('There was an error contacting the Calendar service: ' + err);