diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2020-06-03 16:57:07 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2020-06-03 16:57:07 -0400 |
| commit | 32d07119c85e9d1c6d310c9a530335d0e8930830 (patch) | |
| tree | 6b2969a7568b84f3b0242e4ee3c95eaa11b48316 /www/js/NVR.js | |
| parent | 87c1e58c3ad43bb03ad47949131e7a30e820fffd (diff) | |
#951 add forced mjpeg support on per monitor basis
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 = {}; + } |
