Use accurate sub count when available

このコミットが含まれているのは:
Omar Roth 2019-08-21 18:35:54 -05:00
コミット 4c9975a7d9
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: B8254FB7EC3D37F2
3個のファイルの変更3行の追加3行の削除

ファイルの表示

@ -34,7 +34,7 @@
<div class="h-box">
<% ucid = channel.ucid %>
<% author = channel.author %>
<% sub_count_text = number_to_short_text(channel.sub_count) %>
<% sub_count_text = channel.sub_count.format %>
<%= rendered "components/subscribe_widget" %>
</div>

ファイルの表示

@ -33,7 +33,7 @@
<div class="h-box">
<% ucid = channel.ucid %>
<% author = channel.author %>
<% sub_count_text = number_to_short_text(channel.sub_count) %>
<% sub_count_text = channel.sub_count.format %>
<%= rendered "components/subscribe_widget" %>
</div>

ファイルの表示

@ -33,7 +33,7 @@
<div class="h-box">
<% ucid = channel.ucid %>
<% author = channel.author %>
<% sub_count_text = number_to_short_text(channel.sub_count) %>
<% sub_count_text = channel.sub_count.format %>
<%= rendered "components/subscribe_widget" %>
</div>