summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/CalDAV
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-12-29 15:10:38 +0100
committerVincent Petry (Rebase PR Action) <PVince81@users.noreply.github.com>2022-03-24 17:42:03 +0000
commit941e560b5e144591bfb7c5e57a2a5737f792b630 (patch)
tree66a8cffa5345751908d188c46cd76d7c43df9816 /apps/dav/lib/CalDAV
parent4f33b6937ba68b77e413250a9887f6bcd1ae011d (diff)
downloadnextcloud-server-941e560b5e144591bfb7c5e57a2a5737f792b630.tar.gz
nextcloud-server-941e560b5e144591bfb7c5e57a2a5737f792b630.zip
Fix column/property type of the calendar order
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/dav/lib/CalDAV')
-rw-r--r--apps/dav/lib/CalDAV/CalDavBackend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/CalDavBackend.php b/apps/dav/lib/CalDAV/CalDavBackend.php
index ab3409b3bf0..981f180b647 100644
--- a/apps/dav/lib/CalDAV/CalDavBackend.php
+++ b/apps/dav/lib/CalDAV/CalDavBackend.php
@@ -153,7 +153,7 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
'{DAV:}displayname' => ['displayname', 'string'],
'{urn:ietf:params:xml:ns:caldav}calendar-description' => ['description', 'string'],
'{urn:ietf:params:xml:ns:caldav}calendar-timezone' => ['timezone', 'string'],
- '{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'string'],
+ '{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'int'],
'{http://apple.com/ns/ical/}calendar-color' => ['calendarcolor', 'string'],
'{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => ['deleted_at', 'int'],
];