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 22c75f5 + 85b851a commit 820e091Copy full SHA for 820e091
1 file changed
apps/dav/lib/CalDAV/Schedule/Plugin.php
@@ -765,7 +765,7 @@ private function handleSameOrganizerException(
765
766
$addresses = $this->getAddressesForPrincipal($calendarNode->getOwner());
767
foreach ($vCal->VEVENT as $vevent) {
768
- if (in_array($vevent->ORGANIZER->getNormalizedValue(), $addresses, true)) {
+ if (isset($vevent->ORGANIZER) && in_array($vevent->ORGANIZER->getNormalizedValue(), $addresses, true)) {
769
// User is an organizer => throw the exception
770
throw $e;
771
}
0 commit comments