diff --git a/src/invidious/comments.cr b/src/invidious/comments.cr index d9f86f69..983a3e92 100644 --- a/src/invidious/comments.cr +++ b/src/invidious/comments.cr @@ -93,7 +93,7 @@ def template_youtube_comments(comments)

View #{child["replies"]["replyCount"]} replies + onclick="get_youtube_replies(this)">View #{child["replies"]["replyCount"]} replies

@@ -127,7 +127,7 @@ def template_youtube_comments(comments)

Load more + onclick="get_youtube_replies(this)">Load more

diff --git a/src/invidious/views/watch.ecr b/src/invidious/views/watch.ecr index 4b795b45..1f854d2a 100644 --- a/src/invidious/views/watch.ecr +++ b/src/invidious/views/watch.ecr @@ -53,7 +53,7 @@ function toggle_comments(target) { } } -function load_comments(target) { +function get_youtube_replies(target) { var continuation = target.getAttribute("data-continuation"); var body = target.parentNode.parentNode; @@ -80,6 +80,8 @@ function load_comments(target) { }; xhr.ontimeout = function() { + console.log("Pulling comments timed out."); + body.innerHTML = fallback; }; } @@ -119,6 +121,8 @@ function get_reddit_comments() { }; xhr.ontimeout = function() { + console.log("Pulling comments timed out."); + get_reddit_comments(); }; } @@ -154,6 +158,8 @@ function get_youtube_comments() { }; xhr.ontimeout = function() { + console.log("Pulling comments timed out."); + comments = document.getElementById("comments"); comments.innerHTML = '

';