How to refresh the current calendar event after setting location using event.setLocation(xx)?
I'm developing a calendar addon which provide a search engine for suitable internal locations, user can select the desired one and the addon will set the selected location.
currentEvent.setLocation('My awesome private meeting room');
return CardService.newCalendarEventActionResponseBuilder()
.addAttendees(['tuan.example@test.nl'])
.build();
Everything is set correctly, the card is refreshed, but the actual calendar event's location is NOT, only when the whole page is refreshed then it shows the correct location.
It seems only adding attendees or conference data would work.
Thanks,
Tuan D. Nguyen