Fix a warning because of an undefined array key

This commit is contained in:
Michael 2022-05-11 16:01:37 +00:00
parent 449df1a583
commit 47ee6fd009
1 changed files with 1 additions and 1 deletions

View File

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