fix(caldav): Enhance UID check for base component

Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
This commit is contained in:
Git'Fellow 2026-01-23 15:57:59 +01:00 committed by backportbot[bot]
parent 5619b49aa9
commit 4a3e8eeb5c

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