Merge pull request #57771 from nextcloud/backport/57758/stable33

[stable33] fix(caldav): Enhance UID check for base component
This commit is contained in:
Andy Scherzinger 2026-01-25 23:06:43 +01:00 committed by GitHub
commit 47524649c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}