diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2013-09-09 17:59:29 (GMT) |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2013-09-09 17:59:29 (GMT) |
commit | 42a2401211cbf31b5b01609d1e069e89934e9f70 (patch) | |
tree | 03d392519656985196e19f6b04c19b5451f7415e /lib | |
parent | 633816fda6327393422979f39abc4cf3a4c67e28 (diff) | |
download | iRony-42a2401211cbf31b5b01609d1e069e89934e9f70.tar.gz |
Fix contact group sync on non-Mac devices
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kolab/CardDAV/ContactsBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kolab/CardDAV/ContactsBackend.php b/lib/Kolab/CardDAV/ContactsBackend.php index 9e66a53..a1a86b3 100644 --- a/lib/Kolab/CardDAV/ContactsBackend.php +++ b/lib/Kolab/CardDAV/ContactsBackend.php @@ -297,7 +297,7 @@ class ContactsBackend extends CardDAV\Backend\AbstractBackend } else { $storage = $this->get_storage_folder($addressBookId); - $contact = $storage->get_object($uid); + $contact = $storage->get_object($uid, '*'); } if ($contact) { |