diff options
author | Richard Steinmetz <richard@steinmetz.cloud> | 2024-06-11 14:00:14 +0200 |
---|---|---|
committer | Richard Steinmetz <richard@steinmetz.cloud> | 2024-08-13 15:26:17 +0200 |
commit | 82615ce8688da9ecc2c0e4e9353c463e2f4c3fee (patch) | |
tree | e584ddb986cf42ac9c6a1e7f7dfdf7a757537c5b /apps/dav/lib | |
parent | 822aab6850cf88ae6c11bb25e0d5f2c2e7258075 (diff) | |
download | nextcloud-server-82615ce8688da9ecc2c0e4e9353c463e2f4c3fee.tar.gz nextcloud-server-82615ce8688da9ecc2c0e4e9353c463e2f4c3fee.zip |
fix(caldav): allow VJOURNAL if no supported component set is specified
This is mandated by the RFCs.
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'apps/dav/lib')
-rw-r--r-- | apps/dav/lib/CalDAV/CalDavBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/CalDavBackend.php b/apps/dav/lib/CalDAV/CalDavBackend.php index 8fff6902f9a..5196a971e74 100644 --- a/apps/dav/lib/CalDAV/CalDavBackend.php +++ b/apps/dav/lib/CalDAV/CalDavBackend.php @@ -755,7 +755,7 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription 'uri' => $calendarUri, 'synctoken' => 1, 'transparent' => 0, - 'components' => 'VEVENT,VTODO', + 'components' => 'VEVENT,VTODO,VJOURNAL', 'displayname' => $calendarUri ]; |