Fixed sending photo as inputFileBig

Closes #1011
This commit is contained in:
Igor Zhukov 2015-12-24 21:53:42 +00:00
parent cf7488ddd6
commit a962ff33ce

View File

@ -1565,7 +1565,8 @@ angular.module('myApp.services')
}, function (error) {
if (attachType == 'photo' &&
error.code == 400 &&
error.type == 'PHOTO_INVALID_DIMENSIONS') {
(error.type == 'PHOTO_INVALID_DIMENSIONS' ||
error.type == 'PHOTO_SAVE_FILE_INVALID')) {
error.handled = true;
attachType = 'document';
message.send();