fix: Don't delete Cal video room upon requesting reschedule (#20969)

* Update requestReschedule.handler.ts

* Update requestReschedule.handler.ts
This commit is contained in:
Syed Ali Shahbaz
2025-04-25 08:30:44 -03:00
committed by GitHub
parent ca8ee749a2
commit 720fd90066
@@ -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,