enhance(backend): increase MAX_ROOM_MEMBERS to 50

This commit is contained in:
syuilo
2025-05-11 15:32:36 +09:00
parent 8793176be1
commit 2c96f7f258
2 changed files with 2 additions and 1 deletions

View File

@@ -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+-]+)(?:@\.)?:$/;