Secretly raise the upload limit to 5mb from 4 and send a nice error message if server rejects

This commit is contained in:
Jeremy Zhang
2018-08-17 03:58:08 +00:00
parent 9a1c5945fb
commit a9720fe763
2 changed files with 3 additions and 1 deletions

View File

@ -1868,6 +1868,8 @@
funct.catch(function(data) {
if (data.status == 429) {
Materialize.toast('You are sending messages too fast! 1 message per ' + post_timeout + ' seconds', 10000);
} else if (data.status == 413) {
Materialize.toast('Your file is too powerful! The maximum file size is 4 megabytes.', 5000);
}
});
funct.always(function() {