Merge pull request #11494 from annando/warning
Fix a warning because of an undefined array key
This commit is contained in:
commit
fc364df7c2
|
@ -1700,7 +1700,7 @@ class Contact
|
|||
}
|
||||
}
|
||||
|
||||
if (Network::isLocalLink($contact['url']) && !empty($contact['avatar'])) {
|
||||
if (!empty($contact['avatar']) && !empty($contact['url']) && Network::isLocalLink($contact['url'])) {
|
||||
return $contact;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue