fix: send deleted addressbook items in caldav sync

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2026-03-30 17:20:01 +02:00
parent f8f4f9cb99
commit 68adb3e234

View file

@ -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);