fix: Don't delete Cal video room upon requesting reschedule (#20969)
* Update requestReschedule.handler.ts * Update requestReschedule.handler.ts
This commit is contained in:
@@ -251,7 +251,7 @@ export const requestRescheduleHandler = async ({ ctx, input }: RequestReschedule
|
||||
})
|
||||
);
|
||||
return calendar?.deleteEvent(bookingRef.uid, builder.calendarEvent, bookingRef.externalCalendarId);
|
||||
} else if (bookingRef.type.endsWith("_video")) {
|
||||
} else if (bookingRef.type.endsWith("_video") && bookingRef.type !== "daily_video") {
|
||||
return deleteMeeting(
|
||||
getDelegationCredentialOrRegularCredential({
|
||||
credentials,
|
||||
|
||||
Reference in New Issue
Block a user