We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa941e commit f736485Copy full SHA for f736485
apps/dav/lib/CalDAV/CalDavBackend.php
@@ -2814,7 +2814,7 @@ public function getDenormalizedData($calendarData) {
2814
'size' => strlen($calendarData),
2815
'componentType' => $componentType,
2816
'firstOccurence' => is_null($firstOccurrence) ? null : max(0, $firstOccurrence),
2817
- 'lastOccurence' => $lastOccurrence,
+ 'lastOccurence' => is_null($lastOccurrence) ? null : max(0, $lastOccurrence),
2818
'uid' => $uid,
2819
'classification' => $classification
2820
];
0 commit comments