Skip to content

Commit

Permalink
uplaod limit 100M
Browse files Browse the repository at this point in the history
  • Loading branch information
trazyn committed Dec 3, 2017
1 parent 5bf111b commit 3605287
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/stores/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -729,8 +729,8 @@ class Chat {
}

if (!file
|| file.size >= 50 * 1024 * 1024) {
showMessage('Send file not allowed to exceed 50M.');
|| file.size >= 100 * 1024 * 1024) {
showMessage('Send file not allowed to exceed 100M.');
return false;
}

Expand Down

0 comments on commit 3605287

Please sign in to comment.