Browse Source

Fixed https redirect

master
Igor Zhukov 10 years ago
parent
commit
e45178c132
  1. 6
      app/js/controllers.js

6
app/js/controllers.js

@ -19,7 +19,7 @@ angular.module('myApp.controllers', ['myApp.i18n'])
} }
if (location.protocol == 'http:' && if (location.protocol == 'http:' &&
Config.App.domains.indexOf(location.hostname) != -1) { Config.App.domains.indexOf(location.hostname) != -1) {
location = 'https://web.telegram.org'; location = 'https://' + location.hostname + '/#/login';
return; return;
} }
$scope.showWelcome = true; $scope.showWelcome = true;
@ -41,7 +41,7 @@ angular.module('myApp.controllers', ['myApp.i18n'])
} }
if (location.protocol == 'http:' && if (location.protocol == 'http:' &&
Config.App.domains.indexOf(location.hostname) != -1) { Config.App.domains.indexOf(location.hostname) != -1) {
location = 'https://web.telegram.org/#/login'; location = 'https://' + location.hostname + '/#/login';
} }
}); });
var options = {dcID: 2, createNetworker: true}, var options = {dcID: 2, createNetworker: true},
@ -614,7 +614,7 @@ angular.module('myApp.controllers', ['myApp.i18n'])
MtpApiManager.logOut()['finally'](function () { MtpApiManager.logOut()['finally'](function () {
if (location.protocol == 'http:' && if (location.protocol == 'http:' &&
Config.App.domains.indexOf(location.hostname) != -1) { Config.App.domains.indexOf(location.hostname) != -1) {
location = 'https://web.telegram.org/#/login'; location = 'https://' + location.hostname + '/#/login';
} else { } else {
location.hash = '/login'; location.hash = '/login';
AppRuntimeManager.reload(); AppRuntimeManager.reload();

Loading…
Cancel
Save