Account.find_remote should be raise ActiveRecord::RecordNotFound (#3476)
This commit is contained in:
		
							parent
							
								
									12e795d0a7
								
							
						
					
					
						commit
						d04c02ac37
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -167,7 +167,7 @@ class Account < ApplicationRecord
 | 
			
		|||
    end
 | 
			
		||||
 | 
			
		||||
    def find_remote!(username, domain)
 | 
			
		||||
      return if username.blank?
 | 
			
		||||
      raise ActiveRecord::RecordNotFound if username.blank?
 | 
			
		||||
      where('lower(accounts.username) = ?', username.downcase).where(domain.nil? ? { domain: nil } : 'lower(accounts.domain) = ?', domain&.downcase).take!
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue