about summary refs log tree commit diff
path: root/app/models/account_filter.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-02-13 01:58:26 +0100
committerGitHub <noreply@github.com>2022-02-13 01:58:26 +0100
commit62404668664e3349d87484f73b802f83efccbafa (patch)
tree1d998e63e5592344262d76aec969f00368a0fe74 /app/models/account_filter.rb
parentf76dd51aa5dadc1799a1e6bd178247069d5acceb (diff)
Fix duplicate accounts when searching by IP range in admin UI (#17524)
Diffstat (limited to 'app/models/account_filter.rb')
-rw-r--r--app/models/account_filter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account_filter.rb b/app/models/account_filter.rb
index dcb174122..86b7f5f41 100644
--- a/app/models/account_filter.rb
+++ b/app/models/account_filter.rb
@@ -49,7 +49,7 @@ class AccountFilter
     when 'email'
       accounts_with_users.merge(User.matches_email(value))
     when 'ip'
-      valid_ip?(value) ? accounts_with_users.merge(User.matches_ip(value)) : Account.none
+      valid_ip?(value) ? accounts_with_users.merge(User.matches_ip(value).group('users.id, accounts.id')) : Account.none
     when 'invited_by'
       invited_by_scope(value)
     when 'order'