mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Add 'commentCount' to '/comments/:id'
This commit is contained in:
parent
f4160f937c
commit
dcf4330b35
1 changed files with 5 additions and 0 deletions
|
@ -530,6 +530,11 @@ get "/comments/:id" do |env|
|
||||||
|
|
||||||
comments = JSON.build do |json|
|
comments = JSON.build do |json|
|
||||||
json.object do
|
json.object do
|
||||||
|
if body["header"]?
|
||||||
|
comment_count = body["header"]["commentsHeaderRenderer"]["countText"]["simpleText"].as_s.rchop(" Comments").delete(',').to_i
|
||||||
|
json.field "commentCount", comment_count
|
||||||
|
end
|
||||||
|
|
||||||
json.field "comments" do
|
json.field "comments" do
|
||||||
json.array do
|
json.array do
|
||||||
contents.as_a.each do |item|
|
contents.as_a.each do |item|
|
||||||
|
|
Loading…
Reference in a new issue