From 96072bce5ce48d8bb4f9ea7f3db52c85799c121f Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Wed, 20 Apr 2016 12:27:16 -0700 Subject: [PATCH] fix(attachments): Increase threshold to 12k --- src/flux/models/utils.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flux/models/utils.coffee b/src/flux/models/utils.coffee index 8145fa400..238d3bf4b 100644 --- a/src/flux/models/utils.coffee +++ b/src/flux/models/utils.coffee @@ -24,7 +24,7 @@ Utils = showIconForAttachments: (files) -> return false unless files instanceof Array - return files.find (f) -> !f.contentId or f.size > 3 * 1024 + return files.find (f) -> !f.contentId or f.size > 12 * 1024 extractTextFromHtml: (html, {maxLength} = {}) -> if (html ? "").trim().length is 0 then return ""