0
0
Fork 0

Make account domains case-insensitive, downcase before checking against local

This commit is contained in:
Eugen Rochko 2016-10-10 03:34:15 +02:00
parent 5f737c7228
commit aec51e40ee
2 changed files with 2 additions and 2 deletions

View file

@ -125,7 +125,7 @@ class Account < ApplicationRecord
end
def self.find_remote!(username, domain)
where(arel_table[:username].matches(username)).where(domain: domain).take!
where(arel_table[:username].matches(username)).where(domain.nil? ? { domain: nil } : arel_table[:domain].matches(domain)).take!
end
def self.find_local(username)