diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-11-03 15:29:23 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-11-03 15:29:58 -0500 |
| commit | 68f3943062919ae081deb3a105dcd1513969b9ee (patch) | |
| tree | 2370b2c85ec4de13bb6c109594472967428fb57a /server/lib/upload.js | |
| parent | 79a8caa17b05152533641cfd937925822f569fc1 (diff) | |
filesize error alert
Diffstat (limited to 'server/lib/upload.js')
| -rw-r--r-- | server/lib/upload.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/upload.js b/server/lib/upload.js index e206f7c..f6e22da 100644 --- a/server/lib/upload.js +++ b/server/lib/upload.js @@ -41,7 +41,7 @@ module.exports.put = function (key, file, opt) { err = "file too small" } else if (file.size > 2097152) { // 2mb limit - err = "file too large" + err = "file too large. Uploads can be a maximum of 2 mb." } if (err) { |
