From 0865c6d58aa9196cf8199c4934847b6c38cae216 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 28 Jul 2016 14:19:39 +0200 Subject: [PATCH] The birthday calendar can only hold VEVENT - refs https://github.com/owncloud/tasks/issues/338 --- apps/dav/lib/CalDAV/BirthdayService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/dav/lib/CalDAV/BirthdayService.php b/apps/dav/lib/CalDAV/BirthdayService.php index 09994754d5d4..6960e8bbd265 100644 --- a/apps/dav/lib/CalDAV/BirthdayService.php +++ b/apps/dav/lib/CalDAV/BirthdayService.php @@ -108,6 +108,7 @@ public function ensureCalendarExists($principal) { $this->calDavBackEnd->createCalendar($principal, self::BIRTHDAY_CALENDAR_URI, [ '{DAV:}displayname' => 'Contact birthdays', '{http://apple.com/ns/ical/}calendar-color' => '#FFFFCA', + 'components' => 'VEVENT,VTODO', ]); return $this->calDavBackEnd->getCalendarByUri($principal, self::BIRTHDAY_CALENDAR_URI);