summaryrefslogtreecommitdiff
path: root/www/js/LoginCtrl.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2018-01-27 07:36:15 -0500
committerPliable Pixels <pliablepixels@gmail.com>2018-01-27 07:36:15 -0500
commit27b3de78db191c9ef2e68d8fc8b8f3d97ce5f71b (patch)
treeee7ce1b0c4bc812e222e283f3ce6b1a7636645cc /www/js/LoginCtrl.js
parent02596e5821ba01672763b5faf5375de415de3bf4 (diff)
remove ssl toggle #589
Diffstat (limited to 'www/js/LoginCtrl.js')
-rw-r--r--www/js/LoginCtrl.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/LoginCtrl.js b/www/js/LoginCtrl.js
index 7956950b..36c139b1 100644
--- a/www/js/LoginCtrl.js
+++ b/www/js/LoginCtrl.js
@@ -593,7 +593,7 @@ angular.module('zmApp.controllers').controller('zmApp.LoginCtrl', ['$scope', '$r
$scope.loginData.streamingurl = addhttp($scope.loginData.streamingurl);
$scope.loginData.eventServer = addWsOrWss($scope.loginData.eventServer);
- if ($scope.loginData.useSSL)
+ /* if ($scope.loginData.useSSL)
{
// replace all http with https
$scope.loginData.url = $scope.loginData.url.replace("http:", "https:");
@@ -609,7 +609,7 @@ angular.module('zmApp.controllers').controller('zmApp.LoginCtrl', ['$scope', '$r
$scope.loginData.apiurl = $scope.loginData.apiurl.replace("https:", "http:");
$scope.loginData.streamingurl = $scope.loginData.streamingurl.replace("https:", "http:");
// don't do it for WSS - lets mandate that
- }
+ }*/
var apiurl = $scope.loginData.apiurl + '/host/getVersion.json';
var portalurl = $scope.loginData.url + '/index.php';