forked from External/mage
Limit messages to 500 characters
This commit is contained in:
parent
d71956ef2f
commit
a6e34c040b
1 changed files with 4 additions and 0 deletions
|
|
@ -132,6 +132,10 @@ public class ChatManager {
|
|||
chatSessions.get(chatId).broadcastInfoToUser(user, informUser);
|
||||
return;
|
||||
}
|
||||
|
||||
if (message.length() > 500) {
|
||||
message = message.replaceFirst("^(.{500}).*", "$1 (rest of message truncated)");
|
||||
}
|
||||
|
||||
String messageToCheck = message;
|
||||
Matcher matchPattern = cardNamePattern.matcher(message);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue