From 9b37e7c789a87678f137f6bfeab8c693a3a27290 Mon Sep 17 00:00:00 2001 From: Fake4d Date: Wed, 8 Mar 2017 08:36:29 +0100 Subject: [PATCH] Update to new constant 10485760 is the new constant in miniflux/app/constants.php -> add in default config --- config.default.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.default.php b/config.default.php index af7d613..f2b676a 100644 --- a/config.default.php +++ b/config.default.php @@ -3,8 +3,8 @@ // HTTP_TIMEOUT => default value is 20 seconds (Maximum time to fetch a feed) define('HTTP_TIMEOUT', '20'); -// HTTP_MAX_RESPONSE_SIZE => Maximum accepted size of the response body in MB (default 2MB) -define('HTTP_MAX_RESPONSE_SIZE', 2097152); +// HTTP_MAX_RESPONSE_SIZE => Maximum accepted size of the response body in MB (default 10MB) +define('HTTP_MAX_RESPONSE_SIZE', 10485760); // BASE_URL => URL that clients should access this instance of miniflux from define('BASE_URL', '');