hotfix: missing gCal calendarId (#11139)

Co-authored-by: zomars <zomars@me.com>
This commit is contained in:
alannnc 2023-09-04 13:25:39 -07:00 committed by GitHub
parent 0150041496
commit 8891641953
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,14 +144,14 @@ export default class GoogleCalendarService implements Calendar {
});
// Find in calEventRaw.destinationCalendar the one with the same credentialId
const selectedCalendar = calEventRaw.destinationCalendar?.find(
(cal) => cal.credentialId === credentialId
)?.externalId;
const selectedCalendar =
calEventRaw.destinationCalendar?.find((cal) => cal.credentialId === credentialId)?.externalId ||
"primary";
calendar.events.insert(
{
auth: myGoogleAuth,
calendarId: selectedCalendar || "primary",
calendarId: selectedCalendar,
requestBody: payload,
conferenceDataVersion: 1,
sendUpdates: "none",