mirror of
https://github.com/nextcloud/server.git
synced 2026-02-16 17:30:55 -05:00
fix event move issue
Signed-off-by: Maximilian Martin <maximilian_martin@gmx.de>
This commit is contained in:
parent
9b0ea1a913
commit
8e8a660a09
1 changed files with 2 additions and 2 deletions
|
|
@ -1361,8 +1361,8 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
|
|||
$this->purgeProperties($sourceCalendarId, $objectId);
|
||||
$this->updateProperties($targetCalendarId, $object['uri'], $object['calendardata'], $calendarType);
|
||||
|
||||
$this->addChange($sourceCalendarId, $object['uri'], 1, $calendarType);
|
||||
$this->addChange($targetCalendarId, $object['uri'], 3, $calendarType);
|
||||
$this->addChange($sourceCalendarId, $object['uri'], 3, $calendarType);
|
||||
$this->addChange($targetCalendarId, $object['uri'], 1, $calendarType);
|
||||
|
||||
$object = $this->getCalendarObjectById($newPrincipalUri, $objectId);
|
||||
// Calendar Object wasn't found - possibly because it was deleted in the meantime by a different client
|
||||
|
|
|
|||
Loading…
Reference in a new issue