diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2020-08-29 10:14:04 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2020-08-29 10:14:04 -0400 |
| commit | ca768975f2d0258e4e09acc896cee4dd1ee5b0ca (patch) | |
| tree | e7a0d7689195fcb813b31d22612a71eb9e44cd5c /www | |
| parent | 25211b7d46c08788f390f6f220428b6f179e5ed2 (diff) | |
make sure we don't show 0 alarm bell in ECtrl
Diffstat (limited to 'www')
| -rw-r--r-- | www/js/EventCtrl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/EventCtrl.js b/www/js/EventCtrl.js index 3027de01..a6e89d6c 100644 --- a/www/js/EventCtrl.js +++ b/www/js/EventCtrl.js @@ -2482,7 +2482,7 @@ angular.module('zmApp.controllers') }); // also clear bells $rootScope.alarmCount = "0"; - $rootScope.isAlarm = !$rootScope.isAlarm; + $rootScope.isAlarm = 0; // reset badge count if (window.FirebasePlugin && $rootScope.platformOS == 'ios') { |
