summaryrefslogtreecommitdiff
path: root/www/js/NVR.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2019-01-05 06:28:16 -0500
committerPliable Pixels <pliablepixels@gmail.com>2019-01-05 06:28:16 -0500
commit2fd72fb3601e759b4c350111de3d0c48bcdc6657 (patch)
treed15cfe4145bcef3c1c95cb59a22cc97bcd124a88 /www/js/NVR.js
parent9cf386d9856753bf97b83c3df2ec552af246199e (diff)
use snapshot only if >=1.32
Diffstat (limited to 'www/js/NVR.js')
-rw-r--r--www/js/NVR.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/NVR.js b/www/js/NVR.js
index 94aeae51..3cfdb1dd 100644
--- a/www/js/NVR.js
+++ b/www/js/NVR.js
@@ -20,7 +20,7 @@ angular.module('zmApp.controllers')
DO NOT TOUCH zmAppVersion
It is changed by sync_version.sh
*/
- var zmAppVersion = "1.3.040";
+ var zmAppVersion = "1.3.041";
var isBackground = false;
var justResumed = false;
var timeSinceResumed = -1;
@@ -1792,7 +1792,7 @@ angular.module('zmApp.controllers')
console.log ("API VERSION RETURNED: " + JSON.stringify(success));
$rootScope.apiValid = true;
- if (versionCompare(success.data.version, '1.31.0') != -1 ) {
+ if (versionCompare(success.data.version, '1.32.0') != -1 ) {
debug ("snapshot supported in image.php");
snapshotFrame = 'snapshot';
}