Fix spaces not being stripped in admin account search (#21324)

Fixes #21058

Regression from #18641
This commit is contained in:
Claire 2022-11-27 20:47:29 +01:00 committed by GitHub
parent c0dcf15d1e
commit 57b893d505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -43,13 +43,13 @@ class AccountFilter
when 'status'
status_scope(value)
when 'by_domain'
Account.where(domain: value.to_s)
Account.where(domain: value.to_s.strip)
when 'username'
Account.matches_username(value.to_s)
Account.matches_username(value.to_s.strip)
when 'display_name'
Account.matches_display_name(value.to_s)
Account.matches_display_name(value.to_s.strip)
when 'email'
accounts_with_users.merge(User.matches_email(value.to_s))
accounts_with_users.merge(User.matches_email(value.to_s.strip))
when 'ip'
valid_ip?(value) ? accounts_with_users.merge(User.matches_ip(value).group('users.id, accounts.id')) : Account.none
when 'invited_by'