Browse Source

Fix local users check in contacts menu

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v14.0.0beta1
Christoph Wurst 6 years ago
parent
commit
9f8617a439
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      lib/private/Contacts/ContactsMenu/ContactsStore.php

+ 2
- 1
lib/private/Contacts/ContactsMenu/ContactsStore.php View File

@@ -200,7 +200,8 @@ class ContactsStore implements IContactsStore {
}
}
if ($shareType === 0 || $shareType === 6) {
if ($contact['UID'] === $shareWith && $contact['isLocalSystemBook'] === true) {
$isLocal = $contact['isLocalSystemBook'] ?? false;
if ($contact['UID'] === $shareWith && $isLocal === true) {
$match = $contact;
break;
}

Loading…
Cancel
Save