mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Use accurate sub count when available
This commit is contained in:
parent
9f9cc1ffb5
commit
4c9975a7d9
3 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@
|
||||||
<div class="h-box">
|
<div class="h-box">
|
||||||
<% ucid = channel.ucid %>
|
<% ucid = channel.ucid %>
|
||||||
<% author = channel.author %>
|
<% author = channel.author %>
|
||||||
<% sub_count_text = number_to_short_text(channel.sub_count) %>
|
<% sub_count_text = channel.sub_count.format %>
|
||||||
<%= rendered "components/subscribe_widget" %>
|
<%= rendered "components/subscribe_widget" %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<div class="h-box">
|
<div class="h-box">
|
||||||
<% ucid = channel.ucid %>
|
<% ucid = channel.ucid %>
|
||||||
<% author = channel.author %>
|
<% author = channel.author %>
|
||||||
<% sub_count_text = number_to_short_text(channel.sub_count) %>
|
<% sub_count_text = channel.sub_count.format %>
|
||||||
<%= rendered "components/subscribe_widget" %>
|
<%= rendered "components/subscribe_widget" %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<div class="h-box">
|
<div class="h-box">
|
||||||
<% ucid = channel.ucid %>
|
<% ucid = channel.ucid %>
|
||||||
<% author = channel.author %>
|
<% author = channel.author %>
|
||||||
<% sub_count_text = number_to_short_text(channel.sub_count) %>
|
<% sub_count_text = channel.sub_count.format %>
|
||||||
<%= rendered "components/subscribe_widget" %>
|
<%= rendered "components/subscribe_widget" %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue