mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Fix moving error for calendar object error because of missing principal uri
Signed-off-by: Anna Larch <anna@nextcloud.com>
This commit is contained in:
parent
b314a13e1c
commit
08510edaa1
1 changed files with 2 additions and 2 deletions
|
|
@ -156,10 +156,10 @@ class CalendarObject extends \Sabre\CalDAV\CalendarObject {
|
|||
}
|
||||
|
||||
public function getCalendarId(): int {
|
||||
return (int)$this->objectData['calendarId'];
|
||||
return (int)$this->objectData['calendarid'];
|
||||
}
|
||||
|
||||
public function getPrincipalUri(): string {
|
||||
return $this->objectData['principaluri'];
|
||||
return $this->calendarInfo['principaluri'];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue