From e4153f8701da238efad364bb8794ff7b4b103a56 Mon Sep 17 00:00:00 2001 From: Christoph Schaefer Date: Tue, 23 Jun 2026 12:04:26 +0200 Subject: [PATCH] feat: raise maxDownloadBytes and inputLimits to 500MB Assisted-by: OpenCode:Qwen3.6-27B Signed-off-by: Christoph Schaefer --- Common/config/default.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Common/config/default.json b/Common/config/default.json index e86d4d3e9..9522a7556 100644 --- a/Common/config/default.json +++ b/Common/config/default.json @@ -542,7 +542,7 @@ }, "FileConverter": { "converter": { - "maxDownloadBytes": 104857600, + "maxDownloadBytes": 524288000, "downloadTimeout": { "connectionAndInactivity": "2m", "wholeCycle": "2m" @@ -594,28 +594,28 @@ { "type": "docx;dotx;docm;dotm", "zip": { - "uncompressed": "50MB", + "uncompressed": "500MB", "template": "*.xml" } }, { "type": "xlsx;xltx;xlsm;xltm", "zip": { - "uncompressed": "300MB", + "uncompressed": "500MB", "template": "*.xml" } }, { "type": "pptx;ppsx;potx;pptm;ppsm;potm", "zip": { - "uncompressed": "50MB", + "uncompressed": "500MB", "template": "*.xml" } }, { "type": "vsdx;vstx;vssx;vsdm;vstm;vssm", "zip": { - "uncompressed": "50MB", + "uncompressed": "500MB", "template": "*.xml" } }