From f95c65acac6f84a67ee66f2afe44cdd16403d8f3 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Wed, 11 Oct 2017 14:41:51 -0700 Subject: [PATCH] Add 100MB file size limit for arbitrary file types (#1555) Previously we only had limits for audio, video, and image files. FREEBIE --- js/views/file_input_view.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/views/file_input_view.js b/js/views/file_input_view.js index cc14d91a0..a383c468a 100644 --- a/js/views/file_input_view.js +++ b/js/views/file_input_view.js @@ -146,6 +146,8 @@ limitKb = 100000; break; case 'video': limitKb = 100000; break; + default: + limitKb = 100000; break; } if ((blob.size/1024).toFixed(4) >= limitKb) { var units = ['kB','MB','GB'];