Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-10-19 10:44:19 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-10-19 10:44:19 +0300
commit227045ae63ed1817330aee986e7b230ed0c6fce4 (patch)
tree410605f3a120b2e44712f40c68189957216a037a /apps/dav/src
parent6788c7dea5d390c458ce8382af7e4a93be0fdb80 (diff)
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.js4
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>`,
})
}