Merge pull request #54268 from nextcloud/backport/54259/stable30

[stable30] fix(caldav): get UID value
This commit is contained in:
Joas Schilling 2025-08-05 20:48:23 +02:00 committed by GitHub
commit 7fe647faa3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1120,7 +1120,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')