Merge pull request #5796 from nextcloud/fix/freebusy/free-for-all

fix(freebusy): free for all blocks
This commit is contained in:
Christoph Wurst 2024-02-26 21:46:53 +01:00 committed by GitHub
commit eb7ef4c694
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,