From 8603e55c59c3a8eecae0b35fb796b2f717e85306 Mon Sep 17 00:00:00 2001 From: Albert S Date: Tue, 13 Dec 2022 10:17:40 +0100 Subject: [PATCH] config: Adjust default payload length --- config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.cpp b/config.cpp index 898c789..91abed7 100644 --- a/config.cpp +++ b/config.cpp @@ -114,7 +114,7 @@ Config::Config(const std::map &map) this->templateprefix = "{qswiki:"; - this->max_payload_length = optional("max_payload_length", 10 * 1024 * 1024); + this->max_payload_length = optional("max_payload_length", 60 * 1024 * 1024); ConfigVariableResolver resolver{this->configmap}; this->configVarResolver = resolver;