diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-19 09:44:19 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-19 09:44:19 +0200 |
commit | 227045ae63ed1817330aee986e7b230ed0c6fce4 (patch) | |
tree | 410605f3a120b2e44712f40c68189957216a037a /apps/dav/src | |
parent | 6788c7dea5d390c458ce8382af7e4a93be0fdb80 (diff) | |
download | nextcloud-server-227045ae63ed1817330aee986e7b230ed0c6fce4.tar.gz nextcloud-server-227045ae63ed1817330aee986e7b230ed0c6fce4.zip |
Add missing trailing commas in DAV availability settings
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/dav/src')
-rw-r--r-- | apps/dav/src/service/CalendarService.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/src/service/CalendarService.js b/apps/dav/src/service/CalendarService.js index ff47be59959..3d3fbe34b07 100644 --- a/apps/dav/src/service/CalendarService.js +++ b/apps/dav/src/service/CalendarService.js @@ -46,7 +46,7 @@ export async function findScheduleInboxAvailability() { <x0:prop> <x1:calendar-availability xmlns:x1="urn:ietf:params:xml:ns:caldav"/> </x0:prop> - </x0:propfind>` + </x0:propfind>`, }) const xml = await parseXML(response.data) @@ -142,6 +142,6 @@ export async function saveScheduleInboxAvailability(slots, timezoneId) { <x1:calendar-availability xmlns:x1="urn:ietf:params:xml:ns:caldav">${vcalendarComp.toString()}</x1:calendar-availability> </x0:prop> </x0:set> - </x0:propertyupdate>` + </x0:propertyupdate>`, }) } |