Cast status_count to integer (#9314)
It is returned as a double because the sum is now over bigint columns Fix #9312lolsob-rspec
parent
b874d9dac7
commit
a217abb71c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue