increase max packet size for data_plugins, some plugin keeps fucking it (tropo plugin i think)

This commit is contained in:
2026-07-03 08:53:43 +02:00
parent 302d73854f
commit 7bd28794d6
+1 -1
View File
@@ -252,7 +252,7 @@ pluginsWss.on('connection', (ws, request) => {
ws.on('message', message => {
// Anti-spam
const msg2 = helpers.antispamProtection(message, clientIp, ws, userCommands, lastWarn, userCommandHistory, '10', 'data_plugins');
const msg2 = helpers.antispamProtection(message, clientIp, ws, userCommands, lastWarn, userCommandHistory, '10', 'data_plugins', 1024 * 1024 * 2);
if(!msg2) return;
try {