diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-12-17 09:32:21 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-12-17 09:32:21 -0500 |
| commit | ec374e817621b6c07513ac9de9c476e61777dbb1 (patch) | |
| tree | 0a5e1aa219f9b5fe13ee7648687d0c12f90ee74f /www/js/NVR.js | |
| parent | 50196b63876e11074222f1de069728b90da5bfec (diff) | |
#873 make buffer a dev setting with default to 100
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 0572d3ab..36ddf880 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -21,7 +21,7 @@ angular.module('zmApp.controllers') DO NOT TOUCH zmAppVersion It is changed by sync_version.sh */ - var zmAppVersion = "1.3.083"; + var zmAppVersion = "1.3.085"; var zmAPIVersion = null; var isBackground = false; var justResumed = false; @@ -209,6 +209,7 @@ angular.module('zmApp.controllers') 'kioskPassword': '', 'useAPICaching': true, 'pauseStreams': false, + 'liveStreamBuffer': 100, }; @@ -1597,6 +1598,10 @@ angular.module('zmApp.controllers') } + if (typeof loginData.liveStreamBuffer == 'undefined') { + loginData.liveStreamBuffer = 100; + } + loginData.canSwipeMonitors = true; loginData.forceImageModePath = false; loginData.enableBlog = true; |
