diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-04-06 17:53:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-06 17:53:17 +0200 |
commit | 2c63e0292a0a0a530ce814246bb6762983808135 (patch) | |
tree | 69814a662f68695490884667ea5bcd51feedc8d8 /app/models | |
parent | 78a8a99b0bcfb02d04ee5a4c48b116f6ed7d96b7 (diff) |
Fix admin validation being too strict about usernames (#10449)
* Fix admin validation being too strict about usernames Fix #10446 * Strip Setting.site_contact_username consistently throughout the codebase
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/concerns/account_finder_concern.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/concerns/account_finder_concern.rb b/app/models/concerns/account_finder_concern.rb index 7e3bbde09..0ac49cc12 100644 --- a/app/models/concerns/account_finder_concern.rb +++ b/app/models/concerns/account_finder_concern.rb @@ -13,7 +13,7 @@ module AccountFinderConcern end def representative - find_local(Setting.site_contact_username.gsub(/\A@/, '')) || Account.local.find_by(suspended: false) + find_local(Setting.site_contact_username.strip.gsub(/\A@/, '')) || Account.local.find_by(suspended: false) end def find_local(username) |