Added http checks for im

Closes #575
This commit is contained in:
Igor Zhukov 2014-11-17 13:52:19 +03:00
parent a73943f7ed
commit c0458bb563

View File

@ -612,8 +612,13 @@ angular.module('myApp.controllers', ['myApp.i18n'])
}, function (error) {
if (error.code == 401) {
MtpApiManager.logOut()['finally'](function () {
location.hash = '/login';
AppRuntimeManager.reload();
if (location.protocol == 'http:' &&
Config.App.domains.indexOf(location.hostname) != -1) {
location = 'https://web.telegram.org/#/login';
} else {
location.hash = '/login';
AppRuntimeManager.reload();
}
});
error.handled = true;
}