Browse Source

Fix error when searching for URLs that contain the mention syntax (#13151)

Fixes #13150
pull/53/head
ThibG 6 years ago committed by GitHub
parent
commit
6185bff4b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/services/account_search_service.rb

2
app/services/account_search_service.rb

@ -171,7 +171,7 @@ class AccountSearchService < BaseService
end
def username_complete?
query.include?('@') && "@#{query}" =~ Account::MENTION_RE
query.include?('@') && "@#{query}" =~ /\A#{Account::MENTION_RE}\Z/
end
def likely_acct?

Loading…
Cancel
Save