From 5fb6bf59f74ecb0c0cf94695414e602a09371d69 Mon Sep 17 00:00:00 2001 From: Asaf Gartner Date: Mon, 8 Jul 2024 14:12:52 +0300 Subject: [PATCH] Reduced number of timeline items in featured/recent on landing page --- src/website/landing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/website/landing.go b/src/website/landing.go index 20f63718..3d78c6da 100644 --- a/src/website/landing.go +++ b/src/website/landing.go @@ -14,7 +14,7 @@ import ( ) func Index(c *RequestContext) ResponseData { - const maxPostsPerTab = 50 + const maxPostsPerTab = 20 const maxNewsPosts = 10 c.Perf.StartBlock("SQL", "Fetch subforum tree")