mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 13:23:13 +00:00
Fix error when searching for URLs that contain the mention syntax (#13151)
Fixes #13150
This commit is contained in:
parent
4a4cd686c1
commit
6185bff4b3
|
@ -171,7 +171,7 @@ class AccountSearchService < BaseService
|
||||||
end
|
end
|
||||||
|
|
||||||
def username_complete?
|
def username_complete?
|
||||||
query.include?('@') && "@#{query}" =~ Account::MENTION_RE
|
query.include?('@') && "@#{query}" =~ /\A#{Account::MENTION_RE}\Z/
|
||||||
end
|
end
|
||||||
|
|
||||||
def likely_acct?
|
def likely_acct?
|
||||||
|
|
Loading…
Reference in a new issue