fix: wrong description in Calendar Invite after rescheduling meeting (#8576)

* added instructions for setup on windows to avoid symbolic link issues

* fixed wrong description after rescheduling

* Update README.md

---------

Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
Co-authored-by: alannnc <alannnc@gmail.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
This commit is contained in:
Soham Datta 2023-05-31 10:03:52 +05:30 committed by GitHub
parent 26f0a14ac2
commit 92012dab09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1600,7 +1600,7 @@ async function handler(
async function createBooking() {
if (originalRescheduledBooking) {
evt.title = originalRescheduledBooking?.title || evt.title;
evt.description = originalRescheduledBooking?.description || evt.additionalNotes;
evt.description = originalRescheduledBooking?.description || evt.description;
evt.location = originalRescheduledBooking?.location || evt.location;
}