mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Limit number of reddit comments
This commit is contained in:
parent
caf82ccb8f
commit
d9c89f7e3f
2 changed files with 4 additions and 4 deletions
|
@ -257,12 +257,12 @@ end
|
||||||
def get_reddit_comments(id, client, headers)
|
def get_reddit_comments(id, client, headers)
|
||||||
query = "(url:3D#{id}%20OR%20url:#{id})%20(site:youtube.com%20OR%20site:youtu.be)"
|
query = "(url:3D#{id}%20OR%20url:#{id})%20(site:youtube.com%20OR%20site:youtu.be)"
|
||||||
search_results = client.get("/search.json?q=#{query}", headers)
|
search_results = client.get("/search.json?q=#{query}", headers)
|
||||||
|
|
||||||
if search_results.status_code == 200
|
if search_results.status_code == 200
|
||||||
search_results = RedditSubmit.from_json(search_results.body)
|
search_results = RedditSubmit.from_json(search_results.body)
|
||||||
|
|
||||||
thread = search_results.data.children.sort_by { |child| child.data.score }[-1]
|
thread = search_results.data.children.sort_by { |child| child.data.score }[-1]
|
||||||
result = client.get("/r/#{thread.data.subreddit}/comments/#{thread.data.id}?sort=top&depth=3", headers).body
|
result = client.get("/r/#{thread.data.subreddit}/comments/#{thread.data.id}?limit=100&sort=top", headers).body
|
||||||
result = JSON.parse(result)
|
result = JSON.parse(result)
|
||||||
elsif search_results.status_code == 302
|
elsif search_results.status_code == 302
|
||||||
search_results = client.get(search_results.headers["Location"], headers).body
|
search_results = client.get(search_results.headers["Location"], headers).body
|
||||||
|
|
|
@ -109,7 +109,7 @@ function toggle(target) {
|
||||||
<div style="margin-right:1em; overflow-wrap:break-word; word-wrap:break-word;">
|
<div style="margin-right:1em; overflow-wrap:break-word; word-wrap:break-word;">
|
||||||
<h3><%= reddit_thread.data.title %></h3>
|
<h3><%= reddit_thread.data.title %></h3>
|
||||||
<b>
|
<b>
|
||||||
<a target="_blank" href="https://reddit.com<%= reddit_thread.data.permalink %>">View comments on Reddit</a>
|
<a target="_blank" href="https://reddit.com<%= reddit_thread.data.permalink %>">View more comments on Reddit</a>
|
||||||
</b>
|
</b>
|
||||||
<%= reddit_html %>
|
<%= reddit_html %>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue