From 8371a311b10b86c8166ae385c5d93fbf07b25b2f Mon Sep 17 00:00:00 2001 From: Joe Au-Yeung Date: Thu, 26 Oct 2023 16:56:45 -0400 Subject: [PATCH] GCal set iCalUID --- packages/app-store/googlecalendar/lib/CalendarService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app-store/googlecalendar/lib/CalendarService.ts b/packages/app-store/googlecalendar/lib/CalendarService.ts index f3af3a9cff..7d29442df4 100644 --- a/packages/app-store/googlecalendar/lib/CalendarService.ts +++ b/packages/app-store/googlecalendar/lib/CalendarService.ts @@ -200,6 +200,7 @@ export default class GoogleCalendarService implements Calendar { useDefault: true, }, guestsCanSeeOtherGuests: !!calEventRaw.seatsPerTimeSlot ? calEventRaw.seatsShowAttendees : true, + iCalUID: calEventRaw.iCalUID, }; if (calEventRaw.location) { @@ -248,7 +249,6 @@ export default class GoogleCalendarService implements Calendar { type: "google_calendar", password: "", url: "", - iCalUID: event.data.iCalUID, }; } catch (error) { console.error("There was an error contacting google calendar service: ", error);