diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-11-20 02:52:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-20 02:52:52 +0100 |
commit | 0c666ae5e6d1dc4441daca8bde5fae3b2897d65c (patch) | |
tree | 2459453993cbfff0a1813d406c1acf79c416a3ce /app/presenters | |
parent | 6a65d87f4dff317b37632fbe0a42027f606fd55c (diff) |
Cast status_count to integer (#9314)
It is returned as a double because the sum is now over bigint columns Fix #9312
Diffstat (limited to 'app/presenters')
-rw-r--r-- | app/presenters/instance_presenter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/presenters/instance_presenter.rb b/app/presenters/instance_presenter.rb index 457257e26..093c8ff32 100644 --- a/app/presenters/instance_presenter.rb +++ b/app/presenters/instance_presenter.rb @@ -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 |