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.
2 parents a1cffdc + a7dc629 commit dcda05eCopy full SHA for dcda05e
1 file changed
lib/Service/CalendarService.php
@@ -53,6 +53,9 @@ private function getCalendarsForPrincipal(): void {
53
54
if (!empty($principalUri)) {
55
$this->calendars = $this->calendarManager->getCalendarsForPrincipal($principalUri);
56
+ $this->calendars = array_filter($this->calendars, function ($item) {
57
+ return !$item->isDeleted();
58
+ });
59
} else {
60
$this->calendars = [];
61
}
0 commit comments