fix: meeting not created on hubspot for contacts (#17661)
This commit is contained in:
@@ -29,7 +29,7 @@ export default class CrmManager {
|
||||
|
||||
public async createEvent(event: CalendarEvent, appOptions?: any) {
|
||||
const crmService = await this.getCrmService(this.credential);
|
||||
const { skipContactCreation } = crmService?.getAppOptions();
|
||||
const { skipContactCreation } = crmService?.getAppOptions() || {};
|
||||
// First see if the attendees already exist in the crm
|
||||
let contacts = (await this.getContacts({ emails: event.attendees.map((a) => a.email) })) || [];
|
||||
// Ensure that all attendees are in the crm
|
||||
|
||||
Reference in New Issue
Block a user