Ship SCUM user SQL management page
This commit is contained in:
@@ -110,7 +110,7 @@ export function validateBridgeExecutionRequest(context: PluginBridgeHostContext,
|
||||
return { code: "payload_too_large", message: "bridge payload has too many keys" };
|
||||
}
|
||||
const encodedSize = Object.entries(payload).reduce((sum, [key, value]) => sum + key.length + value.length, 0);
|
||||
if (encodedSize > 4096) {
|
||||
if (encodedSize > 16 * 1024) {
|
||||
return { code: "payload_too_large", message: "bridge payload is too large" };
|
||||
}
|
||||
for (const [key, value] of Object.entries(payload)) {
|
||||
|
||||
Reference in New Issue
Block a user