]> git.mxchange.org Git - friendica.git/commitdiff
Fix style error
authorHank Grabowski <hankgrabowski@gmail.com>
Wed, 15 Feb 2023 20:13:30 +0000 (15:13 -0500)
committerHank Grabowski <hankgrabowski@gmail.com>
Wed, 15 Feb 2023 20:13:30 +0000 (15:13 -0500)
src/Module/Api/Mastodon/Search.php

index 03067771179d46cd0f6264a75878a21a79c77275..96d41c3b2e810cd7317356f0b115940420636b5a 100644 (file)
@@ -108,8 +108,7 @@ class Search extends BaseApi
         */
        private static function searchAccounts(int $uid, string $q, bool $resolve, int $limit, int $offset, bool $following)
        {
-               if (
-                       ($offset == 0) && (strrpos($q, '@') > 0 || Network::isValidHttpUrl($q))
+               if (($offset == 0) && (strrpos($q, '@') > 0 || Network::isValidHttpUrl($q))
                        && $id = Contact::getIdForURL($q, 0, $resolve ? null : false)
                ) {
                        return DI::mstdnAccount()->createFromContactId($id, $uid);