mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
fix(caldav): get UID value
Signed-off-by: Anna Larch <anna@nextcloud.com>
This commit is contained in:
parent
13a0fc8c97
commit
e6baecd6c6
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