hotfix: missing gCal calendarId (#11139)

Co-authored-by: zomars <zomars@me.com>
pull/11140/head^2
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
1 changed files with 4 additions and 4 deletions

View File

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