Don't count suspended users in user count (#9380)

Fix #7637
This commit is contained in:
Eugen Rochko 2018-11-27 18:49:37 +01:00 committed by GitHub
parent 43c311b3a1
commit 81f96c973a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class InstancePresenter
end
def user_count
Rails.cache.fetch('user_count') { User.confirmed.count }
Rails.cache.fetch('user_count') { User.confirmed.joins(:account).merge(Account.without_suspended).count }
end
def status_count