diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-04 21:15:52 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-04 21:15:52 +0200 |
commit | 35dfc0fbcb725d45facc74af615fd96b9581d978 (patch) | |
tree | e35b0954231c9fa566a1b192033956ec66ea15b5 /app/helpers | |
parent | 29996a7e8b5bde15d3409f3f19820afa13dd1e33 (diff) |
Fixed more case-sensitivity issues
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index e2baecede..e0105ee54 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -30,7 +30,7 @@ module ApplicationHelper if domain == Rails.configuration.x.local_domain account = Account.find_local(username) else - account = Account.find_by(username: username, domain: domain) + account = Account.find_remote(username, domain) end account |