From 3ee7201f5d1eb9655fc11f0f377529ec71a3b834 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sat, 20 Oct 2018 13:52:06 -0500 Subject: Comma seperate comment scores --- src/invidious/comments.cr | 4 ++-- src/invidious/views/watch.ecr | 9 ++++++++- 2 files changed, 10 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/invidious/comments.cr b/src/invidious/comments.cr index 98062f4e..6a42701c 100644 --- a/src/invidious/comments.cr +++ b/src/invidious/comments.cr @@ -115,7 +115,7 @@ def template_youtube_comments(comments)

#{child["contentHtml"]}

#{recode_date(Time.epoch(child["published"].as_i64))} ago | - #{child["likeCount"]} + #{number_with_separator(child["likeCount"])}

#{replies_html} @@ -158,7 +158,7 @@ def template_reddit_comments(root)

[ - ] #{author} - #{score} points + #{number_with_separator(score)} points #{recode_date(child.created_utc)} ago

diff --git a/src/invidious/views/watch.ecr b/src/invidious/views/watch.ecr index 4fbd4d5b..9424bd10 100644 --- a/src/invidious/views/watch.ecr +++ b/src/invidious/views/watch.ecr @@ -152,6 +152,13 @@