diff options
Diffstat (limited to 'www/js/NVR.js')
| -rw-r--r-- | www/js/NVR.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/www/js/NVR.js b/www/js/NVR.js index 2278ad54..196fe66e 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -227,7 +227,8 @@ angular.module('zmApp.controllers') 'montageHideFooter': false, 'httpCordovaNoEncode': false, 'currentZMGroupNames': [], - 'unsupported': {} + 'unsupported': {}, + 'monitorSpecific': {} }; @@ -1762,6 +1763,10 @@ angular.module('zmApp.controllers') if (typeof loginData.unsupported == 'undefined') { loginData.unsupported = {}; } + + if (typeof loginData.monitorSpecific == 'undefined') { + loginData.monitorSpecific = {}; + } |
