lifted image cap to 50mb

This commit is contained in:
bill bittner 2017-07-31 10:24:17 -07:00
parent 90b95bdb12
commit d9276d1a35

View file

@ -14,8 +14,8 @@ function validateFile(file) {
case 'image/jpg':
case 'image/png':
case 'image/gif':
if (file.size > 10000000){
throw new Error('Sorry, images are limited to 10 megabytes.');
if (file.size > 50000000){
throw new Error('Sorry, images are limited to 50 megabytes.');
}
break;
case 'video/mp4':