From d35c530e875d7d5fbe5291afefaee1bd287849f8 Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Wed, 6 Dec 2023 12:54:31 -0700 Subject: [PATCH] utils: fix default upload limit --- src/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils.js b/src/lib/utils.js index f1df767..fd3f0d3 100644 --- a/src/lib/utils.js +++ b/src/lib/utils.js @@ -386,7 +386,7 @@ function parseHtmlEntities(str) { }); } -const UPLOAD_LIMIT = 8388608; +const UPLOAD_LIMIT = 26214400; const UPLOAD_LIMIT_TIER_2 = 52428800; const UPLOAD_LIMIT_TIER_3 = 104857600;