Contact search is fixed

This commit is contained in:
Michael 2020-08-04 05:44:38 +00:00
parent adfb94d370
commit 041a96555b
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ class Acl extends BaseModule
}
$type = $_REQUEST['type'] ?? self::TYPE_MENTION_CONTACT_GROUP;
Logger::info('Blubb', ['parameters' => $parameters]);
if ($type === self::TYPE_GLOBAL_CONTACT) {
$o = self::globalContactSearch();
} else {
@ -81,7 +81,7 @@ class Acl extends BaseModule
$contacts[] = [
'photo' => Contact::getMicro($contact),
'name' => htmlspecialchars($contact['name']),
'nick' => $contact['nick'],
'nick' => $contact['addr'] ?: $contact['url'],
'network' => $contact['network'],
'link' => $contact['url'],
'forum' => $contact['contact-type'] == Contact::TYPE_COMMUNITY,