forked from cybrespace/mastodon
This commit is contained in:
parent
f49339ca9c
commit
6654c30033
|
@ -18,7 +18,7 @@ class AccountSearchService < BaseService
|
||||||
return [] if query_blank_or_hashtag? || limit < 1
|
return [] if query_blank_or_hashtag? || limit < 1
|
||||||
|
|
||||||
if resolving_non_matching_remote_account?
|
if resolving_non_matching_remote_account?
|
||||||
[ResolveRemoteAccountService.new.call("#{query_username}@#{query_domain}")]
|
[ResolveRemoteAccountService.new.call("#{query_username}@#{query_domain}")].compact
|
||||||
else
|
else
|
||||||
search_results_and_exact_match.compact.uniq.slice(0, limit)
|
search_results_and_exact_match.compact.uniq.slice(0, limit)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue