mirror of
https://github.com/nextcloud/server.git
synced 2026-03-23 10:54:41 -04:00
fix(caldav): Enhance UID check for base component
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
This commit is contained in:
parent
d9d1d04e2e
commit
59bb049de0
1 changed files with 2 additions and 1 deletions
|
|
@ -78,7 +78,8 @@ class RefreshWebcalService {
|
|||
/** @var Component\VCalendar $vObject */
|
||||
$vBase = $vObject->getBaseComponent();
|
||||
|
||||
if (!$vBase->UID) {
|
||||
// Skip if no base component found
|
||||
if (!isset($vBase->UID)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue