diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-06-24 10:10:31 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-06-24 10:10:31 -0400 |
| commit | cda5d4a1c9017047680d6931ad61fc0c8060a821 (patch) | |
| tree | 6d04e5ef0dbdf3f4ec18b6bdaf680df49618f137 /www/js/NVR.js | |
| parent | f7a0ac135408bf4da725d519bb4d32731c94e65f (diff) | |
#823 fix relayout issues, re-order issues etc
Diffstat (limited to 'www/js/NVR.js')
| -rw-r--r-- | www/js/NVR.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/NVR.js b/www/js/NVR.js index 7239c72a..7ff7078e 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -1971,13 +1971,13 @@ angular.module('zmApp.controllers') return timeSinceResumed; }, - stopNetwork: function (str) { + stopNetwork: function (str, dontDoIt) { var d = $q.defer(); var s = ""; if (str) s = str + ":"; - if (justResumed) { + if (justResumed || dontDoIt) { // we don't call stop as we did stop on pause - log(s + " Not calling window stop as we just resumed"); + log(s + " Not calling window stop "); d.resolve(true); return (d.promise); |
