From 41dc8ab0e65182294f6dbcdf473236e937f64f22 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Mon, 11 Oct 2021 15:18:16 +0100 Subject: [PATCH] Increase the MAX_RESULTS constant because it's not as relevant any more --- core/src/main/java/com/muwire/core/Constants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/muwire/core/Constants.java b/core/src/main/java/com/muwire/core/Constants.java index 20e78bd8..62558ee7 100644 --- a/core/src/main/java/com/muwire/core/Constants.java +++ b/core/src/main/java/com/muwire/core/Constants.java @@ -22,7 +22,7 @@ public class Constants { public static final int MAX_HEADERS = 16; public static final long MAX_HEADER_TIME = 60 * 1000; - public static final int MAX_RESULTS = 0x1 << 16; + public static final int MAX_RESULTS = 0x1 << 18; public static final int MAX_COMMENT_LENGTH = 0x1 << 15;