Fix hashtag search performing account search as well (#13758)

This commit is contained in:
ThibG
2020-05-14 23:37:37 +02:00
committed by GitHub
parent 71fce71c94
commit 27ea7c13a5
2 changed files with 9 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class SearchService < BaseService
end
def account_searchable?
account_search? && !(@query.include?('@') && @query.include?(' '))
account_search? && !(@query.start_with?('#') || (@query.include?('@') && @query.include?(' ')))
end
def hashtag_searchable?