diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-05-25 07:49:40 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-05-25 07:49:40 -0400 |
| commit | 459682b60c024bd28fbaf83decb3b32c8555225e (patch) | |
| tree | 75eeee212bc34901c1965f12c9ca44d772997924 | |
| parent | 8e88063726d2a4f188f12534c9e3e24d95926b32 (diff) | |
don't double add auth
| -rw-r--r-- | www/js/WizardCtrl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/WizardCtrl.js b/www/js/WizardCtrl.js index 35f83641..86c4cbe9 100644 --- a/www/js/WizardCtrl.js +++ b/www/js/WizardCtrl.js @@ -229,7 +229,7 @@ angular.module('zmApp.controllers').controller('zmApp.WizardCtrl', ['$scope', '$ getFirstMonitor() .then(function (success) { $ionicLoading.hide(); - var tail = "/nph-zms?mode=single&monitor=" + success + $rootScope.authSession; + var tail = "/nph-zms?mode=single&monitor=" + success;//+ $rootScope.authSession; if ($scope.wizard.useauth && $scope.wizard.usezmauth) { var ck = Math.floor(Math.random() * (50000 - 10000 + 1)) + 10000; |
