mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Merge pull request #54268 from nextcloud/backport/54259/stable30
[stable30] fix(caldav): get UID value
This commit is contained in:
commit
7fe647faa3
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue