We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 990ce9e commit 37a6c9dCopy full SHA for 37a6c9d
src/main/java/org/havenapp/main/service/MonitorService.java
@@ -305,9 +305,10 @@ else if (mPrefs.getNotificationTimeMs() > 0 && mLastNotification != null)
305
//check if time window is within configured notification time window
306
doNotification = ((now.getTime()-mLastNotification.getTime())>mPrefs.getNotificationTimeMs());
307
}
308
- else
+
309
+ if (doNotification)
310
{
- doNotification = true;
311
+ doNotification = !(mPrefs.getVideoMonitoringActive() && alertType == EventTrigger.CAMERA);
312
313
314
EventTrigger eventTrigger = new EventTrigger();
0 commit comments