Fix for "Undefined index: profile_url"
This commit is contained in:
parent
a61f61a051
commit
6f3b46217e
2 changed files with 3 additions and 3 deletions
|
@ -142,7 +142,7 @@ class Search
|
|||
$profiles = $results['profiles'] ?? [];
|
||||
|
||||
foreach ($profiles as $profile) {
|
||||
$profile_url = $profile['profile_url'] ?? '';
|
||||
$profile_url = $profile['url'] ?? '';
|
||||
$contactDetails = Contact::getDetailsByURL($profile_url, local_user());
|
||||
|
||||
$result = new ContactResult(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue