mirror of
https://github.com/nextcloud/server.git
synced 2026-04-27 17:18:48 -04:00
fix event move issue
Signed-off-by: Maximilian Martin <maximilian_martin@gmx.de> Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
cf20825a71
commit
77fa3d7556
1 changed files with 2 additions and 2 deletions
|
|
@ -1374,8 +1374,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