From 32d07119c85e9d1c6d310c9a530335d0e8930830 Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Wed, 3 Jun 2020 16:57:07 -0400 Subject: #951 add forced mjpeg support on per monitor basis --- www/js/NVR.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'www/js/NVR.js') 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 = {}; + } -- cgit v1.2.3