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 5f2afad commit 2768d55Copy full SHA for 2768d55
1 file changed
apps/dav/lib/CalDAV/CalDavBackend.php
@@ -2861,7 +2861,7 @@ public function getDenormalizedData($calendarData) {
2861
'size' => strlen($calendarData),
2862
'componentType' => $componentType,
2863
'firstOccurence' => is_null($firstOccurrence) ? null : max(0, $firstOccurrence),
2864
- 'lastOccurence' => $lastOccurrence,
+ 'lastOccurence' => is_null($lastOccurrence) ? null : max(0, $lastOccurrence),
2865
'uid' => $uid,
2866
'classification' => $classification
2867
];
0 commit comments