kopia lustrzana https://github.com/iv-org/invidious
Fix comment replies
rodzic
9a15438c71
commit
6bb747b579
|
@ -1842,8 +1842,17 @@ get "/api/v1/comments/:id" do |env|
|
||||||
comments = JSON.parse(comments)
|
comments = JSON.parse(comments)
|
||||||
content_html = template_youtube_comments(comments)
|
content_html = template_youtube_comments(comments)
|
||||||
|
|
||||||
next {"contentHtml" => content_html,
|
response = JSON.build do |json|
|
||||||
"commentCount" => comments["commentCount"]}.to_json
|
json.object do
|
||||||
|
json.field "contentHtml", content_html
|
||||||
|
|
||||||
|
if comments["commentCount"]?
|
||||||
|
json.field "commentCount", comments["commentCount"]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
next response
|
||||||
end
|
end
|
||||||
elsif source == "reddit"
|
elsif source == "reddit"
|
||||||
client = make_client(REDDIT_URL)
|
client = make_client(REDDIT_URL)
|
||||||
|
|
Ładowanie…
Reference in New Issue