Fixed updateChannelTooLong handling

fixed allow min
This commit is contained in:
Igor Zhukov 2016-04-14 17:53:18 +03:00
parent c91ed89975
commit 176d49b2b6
2 changed files with 3 additions and 3 deletions

View File

@ -133,7 +133,7 @@ angular.module('izhukov.mtproto.wrapper', ['izhukov.utils', 'izhukov.mtproto'])
if (!options.noErrorBox) {
error.input = method;
error.stack = error.originalError && error.originalError.stack || error.stack || (new Error()).stack;
error.stack = stack || (error.originalError && error.originalError.stack) || error.stack || (new Error()).stack;
setTimeout(function () {
if (!error.handled) {
if (error.code == 401) {

View File

@ -200,7 +200,7 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
function hasUser(id, allowMin) {
var user = users[id];
return angular.isObject(user) && (!allowMin || !user.pFlags.min);
return angular.isObject(user) && (allowMin || !user.pFlags.min);
}
function getUserPhoto(id) {
@ -734,7 +734,7 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
function hasChat (id, allowMin) {
var chat = chats[id];
return angular.isObject(chat) && (!allowMin || !chat.pFlags.min);
return angular.isObject(chat) && (allowMin || !chat.pFlags.min);
}
function getChatPhoto(id) {