From 6aeb508f291eda935cc7077d7faaf9034d5c3270 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sun, 29 Jul 2018 10:49:46 -0500 Subject: [PATCH] Fix for /comments/ where there is only one comment --- src/invidious.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/invidious.cr b/src/invidious.cr index b1a59dcb..7fdfbcfe 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -568,7 +568,7 @@ get "/api/v1/comments/:id" do |env| comments = JSON.build do |json| json.object do if body["header"]? - comment_count = body["header"]["commentsHeaderRenderer"]["countText"]["simpleText"].as_s.rchop(" Comments").delete(',').to_i + comment_count = body["header"]["commentsHeaderRenderer"]["countText"]["simpleText"].as_s.rchop(" Comment").delete("s,").to_i json.field "commentCount", comment_count end