mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
Merge pull request #57771 from nextcloud/backport/57758/stable33
[stable33] fix(caldav): Enhance UID check for base component
This commit is contained in:
commit
47524649c7
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