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 4e024dc + 1b17734 commit 3422a3eCopy full SHA for 3422a3e
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