From 464e4f10b20c77fe1b8a13f2c4741203452af3a7 Mon Sep 17 00:00:00 2001 From: SabreCat Date: Fri, 11 Aug 2023 14:34:27 -0500 Subject: [PATCH] feat(chats): increase chat entries to 400 --- website/server/models/group.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/server/models/group.js b/website/server/models/group.js index fd01b440b3..c41aa0320b 100644 --- a/website/server/models/group.js +++ b/website/server/models/group.js @@ -67,7 +67,7 @@ export const SPAM_MESSAGE_LIMIT = 2; export const SPAM_WINDOW_LENGTH = 60000; // 1 minute export const SPAM_MIN_EXEMPT_CONTRIB_LEVEL = 4; -export const MAX_CHAT_COUNT = 200; +export const MAX_CHAT_COUNT = 400; export const MAX_SUBBED_GROUP_CHAT_COUNT = 400; export const schema = new Schema({