From 9946cee63996271caeaa5903492302cd4a175d0d Mon Sep 17 00:00:00 2001 From: "M. Taylor Saotome-Westlake" Date: Fri, 5 May 2023 21:09:39 -0700 Subject: [PATCH] increase recent-comments count Tail specifically asked for this, but I agree. --- theme/static/js/recent_comments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/static/js/recent_comments.js b/theme/static/js/recent_comments.js index 2697756..1814ef5 100644 --- a/theme/static/js/recent_comments.js +++ b/theme/static/js/recent_comments.js @@ -3,7 +3,7 @@ function getRecentComments() { let container = document.querySelector("#recent-comments-container"); let request = new XMLHttpRequest(); - request.open('GET', 'http://unremediatedgender.space/isso/latest?limit=5', true); + request.open('GET', 'http://unremediatedgender.space/isso/latest?limit=10', true); request.onload = function() { if (this.status >= 200 && this.status < 400) { -- 2.17.1