Add missing trailing commas in DAV availability settings

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2021-10-19 09:44:19 +02:00
parent 6788c7dea5
commit 227045ae63
No known key found for this signature in database
GPG key ID: CC42AC2A7F0E56D8
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -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>`,
})
}