From 7e65920be97d78b6946ce9a95fd4ecdac27bc5ac Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Sun, 9 Jul 2017 04:31:41 +0200 Subject: [PATCH] Reduced number of anime search results --- pages/search/search.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/search/search.go b/pages/search/search.go index 0044ec82..c86995f4 100644 --- a/pages/search/search.go +++ b/pages/search/search.go @@ -6,8 +6,8 @@ import ( "github.com/animenotifier/notify.moe/components" ) -const maxUsers = 9 * 4 -const maxAnime = 9 * 4 +const maxUsers = 6 * 6 +const maxAnime = 5 * 6 // Get search page. func Get(ctx *aero.Context) string {