Browse Source
Merge pull request #103 from Spiritreader/master
Fix parenthesis mistake in notification checker (fixes #86)
pull/104/head
Louis Lam
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
server/model/monitor.js
|
|
@ -120,7 +120,7 @@ class Monitor extends BeanModel { |
|
|
|
|
|
|
|
// Mark as important if status changed, ignore pending pings,
|
|
|
|
// Don't notify if disrupted changes to up
|
|
|
|
if ((! previousBeat || previousBeat.status !== bean.status) && bean.status !== 2 && !(previousBeat.status === 2 && bean.status !== 0)) { |
|
|
|
if ((!previousBeat) || ((previousBeat.status !== bean.status) && bean.status !== 2 && !(previousBeat.status === 2 && bean.status !== 0))) { |
|
|
|
bean.important = true; |
|
|
|
|
|
|
|
// Do not send if first beat is UP
|
|
|
|