Merge pull request #9725 from nextcloud/fix/contacts-menu-local-null-check

Fix local users check in contacts menu
This commit is contained in:
Morris Jobke 2018-06-04 14:58:23 +02:00 committed by GitHub
commit 8c3ec5f589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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;
}