diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-05-29 09:37:24 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-05-29 09:37:24 -0400 |
| commit | 40ea187a7b233e8983af110a900808112535fd6e (patch) | |
| tree | b1c6382f22369fbe74f287759a9dbf75a3d78178 /www/js/NVR.js | |
| parent | e9eea88e14a428327eb6f54fce5f8be1b83354ae (diff) | |
auth session needs to be ""
Diffstat (limited to 'www/js/NVR.js')
| -rw-r--r-- | www/js/NVR.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/NVR.js b/www/js/NVR.js index 1e7e534b..fcde6fed 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -752,7 +752,7 @@ angular.module('zmApp.controllers') if (!mid) { log("Deferring auth key, as monitorId unknown"); - d.resolve("undefined"); + d.resolve(""); $rootScope.authSession = as; return (d.promise); } @@ -793,7 +793,7 @@ angular.module('zmApp.controllers') }, function (error) { log("NVR: Error resolving auth key " + JSON.stringify(error)); - d.resolve("undefined"); + d.resolve(""); return (d.promise); }); return (d.promise); |
