mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Fix for /comments/ where there is only one comment
This commit is contained in:
parent
4cc2cf46aa
commit
6aeb508f29
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue