Browse Source

Fixed max file size = 1.5Gb

master
Igor Zhukov 10 years ago
parent
commit
80e665d4a2
  1. 2
      app/js/lib/mtproto_wrapper.js

2
app/js/lib/mtproto_wrapper.js

@ -556,7 +556,7 @@ angular.module('izhukov.mtproto.wrapper', ['izhukov.utils', 'izhukov.mtproto'])
} }
var totalParts = Math.ceil(fileSize / partSize); var totalParts = Math.ceil(fileSize / partSize);
if (totalParts > 1500) { if (totalParts > 3000) {
return $q.reject({type: 'FILE_TOO_BIG'}); return $q.reject({type: 'FILE_TOO_BIG'});
} }

Loading…
Cancel
Save