Less than, not moreThan15

This commit is contained in:
Roumen Georgiev 2017-11-29 09:21:55 +02:00 committed by GitHub
parent 542cedff9d
commit c56330cae7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -632,11 +632,11 @@ public class NSClientService extends Service {
if (sgv.getMills() > latestDateInReceivedData)
latestDateInReceivedData = sgv.getMills();
}
// Was that sgv more than 15 mins ago ?
boolean moreThan15MinAgo = false;
// Was that sgv more less 15 mins ago ?
boolean lessThan15MinAgo = false;
if((System.currentTimeMillis()-latestDateInReceivedData)/(60 * 1000L) < 15L )
moreThan15MinAgo = true;
if(Notification.isAlarmForStaleData() && moreThan15MinAgo){
lessThan15MinAgo = true;
if(Notification.isAlarmForStaleData() && lessThan15MinAgo){
MainApp.bus().post(new EventDismissNotification(Notification.NSALARM));
}
BroadcastSgvs.handleNewSgv(sgvs, MainApp.instance().getApplicationContext(), isDelta);