Fix error when searching for URLs that contain the mention syntax (#13151)
Fixes #13150
This commit is contained in:
		
							parent
							
								
									4a4cd686c1
								
							
						
					
					
						commit
						6185bff4b3
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -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…
	
		Reference in a new issue