Update packages/core/builders/CalendarEvent/director.ts

This commit is contained in:
Omar López 2022-04-14 11:55:27 -06:00 committed by GitHub
parent 0076bb7d78
commit de9ee071db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ export class CalendarEventDirector {
if (this.existingBooking && this.existingBooking.eventTypeId && this.existingBooking.uid) {
await this.builder.buildEventObjectFromInnerClass(this.existingBooking.eventTypeId);
await this.builder.buildUsersFromInnerClass();
await this.builder.buildAttendeesList();
this.builder.buildAttendeesList();
this.builder.setLocation(this.existingBooking.location);
this.builder.setUId(this.existingBooking.uid);
this.builder.setCancellationReason(this.cancellationReason);