From: Michael Date: Sun, 9 May 2021 11:58:27 +0000 (+0000) Subject: Some more code styling X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6e9dd7641ff7c9f5d4ac6a7afa3a24a0e1267f82;p=friendica.git Some more code styling --- diff --git a/src/Module/Api/Mastodon/Accounts/Search.php b/src/Module/Api/Mastodon/Accounts/Search.php index 0eda36e31e..3509834fc6 100644 --- a/src/Module/Api/Mastodon/Accounts/Search.php +++ b/src/Module/Api/Mastodon/Accounts/Search.php @@ -74,12 +74,14 @@ class Search extends BaseApi } if ($result instanceof ContactResult) { $id = Contact::getIdForURL($result->getUrl(), 0, false); + $accounts[] = DI::mstdnAccount()->createFromContactId($id, $uid); } } } } else { $contacts = Contact::searchByName($q, '', $uid); + $counter = 0; foreach ($contacts as $contact) { if (!in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {