Cast status_count to integer (#9314)

It is returned as a double because the sum is now over bigint columns

Fix #9312
This commit is contained in:
Eugen Rochko 2018-11-20 02:52:52 +01:00 committed by GitHub
vanhempi 6a65d87f4d
commit 0c666ae5e6
No known key found for this signature in database
GPG avaimen ID: 4AEE18F83AFDEB23
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa

Näytä tiedosto

@ -22,7 +22,7 @@ class InstancePresenter
end
def status_count
Rails.cache.fetch('local_status_count') { Account.local.joins(:account_stat).sum('account_stats.statuses_count') }
Rails.cache.fetch('local_status_count') { Account.local.joins(:account_stat).sum('account_stats.statuses_count') }.to_i
end
def domain_count