aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Larch <anna@nextcloud.com>2025-08-05 16:07:28 +0200
committerAnna Larch <anna@nextcloud.com>2025-08-05 19:08:39 +0200
commit04f57d36113105c4fe6a00d8048b1fa13c62f321 (patch)
tree6b8793ae0e3bd6559878d1f778769e90480cbe7b
parent2792cd8c606a13b03afc1347736ac8b1ebe56a29 (diff)
downloadnextcloud-server-backport/54240/stable31.tar.gz
nextcloud-server-backport/54240/stable31.zip
fix(caldav): get UID valuebackport/54240/stable31
Signed-off-by: Anna Larch <anna@nextcloud.com>
-rw-r--r--apps/dav/lib/CalDAV/Schedule/IMipService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/Schedule/IMipService.php b/apps/dav/lib/CalDAV/Schedule/IMipService.php
index 42042c45b97..531847175a1 100644
--- a/apps/dav/lib/CalDAV/Schedule/IMipService.php
+++ b/apps/dav/lib/CalDAV/Schedule/IMipService.php
@@ -1110,7 +1110,7 @@ class IMipService {
$sequence = $iTipMessage->sequence;
$recurrenceId = isset($vevent->{'RECURRENCE-ID'}) ?
$vevent->{'RECURRENCE-ID'}->serialize() : null;
- $uid = $vevent->{'UID'};
+ $uid = $vevent->{'UID'}?->getValue();
$query = $this->db->getQueryBuilder();
$query->insert('calendar_invitations')