summaryrefslogtreecommitdiff
path: root/packages/backend
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-05-11 15:32:36 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-05-11 15:32:36 +0900
commit2c96f7f2583c7da7ad328d3141872a23a6a864e9 (patch)
tree05a0a44ef3a1446f4fa243b8833ad237f2f3fe7f /packages/backend
parentUpdate about-misskey.vue (diff)
downloadmisskey-2c96f7f2583c7da7ad328d3141872a23a6a864e9.tar.gz
misskey-2c96f7f2583c7da7ad328d3141872a23a6a864e9.tar.bz2
misskey-2c96f7f2583c7da7ad328d3141872a23a6a864e9.zip
enhance(backend): increase MAX_ROOM_MEMBERS to 50
Diffstat (limited to 'packages/backend')
-rw-r--r--packages/backend/src/core/ChatService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/ChatService.ts b/packages/backend/src/core/ChatService.ts
index 2ceff341cc..4e81847a52 100644
--- a/packages/backend/src/core/ChatService.ts
+++ b/packages/backend/src/core/ChatService.ts
@@ -29,7 +29,7 @@ import { emojiRegex } from '@/misc/emoji-regex.js';
import { NotificationService } from '@/core/NotificationService.js';
import { ModerationLogService } from '@/core/ModerationLogService.js';
-const MAX_ROOM_MEMBERS = 30;
+const MAX_ROOM_MEMBERS = 50;
const MAX_REACTIONS_PER_MESSAGE = 100;
const isCustomEmojiRegexp = /^:([\w+-]+)(?:@\.)?:$/;