fix(freebusy): free for all blocks

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
This commit is contained in:
Richard Steinmetz 2024-02-26 16:33:50 +01:00 committed by GitHub
parent 87355d4413
commit fd46192564
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ export default function(organizer, attendees, resources) {
)
const slots = []
for (const [, freeBusyProperty] of freeBusyIterator) {
for await (const [, freeBusyProperty] of freeBusyIterator) {
slots.push({
start: freeBusyProperty.getFirstValue().start.getInTimezone(timezoneObject).jsDate,
end: freeBusyProperty.getFirstValue().end.getInTimezone(timezoneObject).jsDate,