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/presenters | |
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/presenters')
-rw-r--r-- | app/presenters/instance_presenter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/presenters/instance_presenter.rb b/app/presenters/instance_presenter.rb index 74c5ed129..f3a73209a 100644 --- a/app/presenters/instance_presenter.rb +++ b/app/presenters/instance_presenter.rb @@ -13,7 +13,7 @@ class InstancePresenter ) def contact_account - Account.find_local(Setting.site_contact_username.gsub(/\A@/, '')) + Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, '')) end def user_count |