mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: send deleted addressbook items in caldav sync
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
6bb365e758
commit
cc1026f707
1 changed files with 2 additions and 1 deletions
|
|
@ -232,7 +232,8 @@ class SystemAddressbook extends AddressBook {
|
|||
return $changed;
|
||||
}
|
||||
|
||||
$added = $modified = $deleted = [];
|
||||
$added = $modified = [];
|
||||
$deleted = array_values($changed['deleted']);
|
||||
foreach ($changed['added'] as $uri) {
|
||||
try {
|
||||
$this->getChild($uri);
|
||||
|
|
|
|||
Loading…
Reference in a new issue