aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/handler/events/FuelEventHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/traccar/handler/events/FuelEventHandler.java')
-rw-r--r--src/main/java/org/traccar/handler/events/FuelEventHandler.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/org/traccar/handler/events/FuelEventHandler.java b/src/main/java/org/traccar/handler/events/FuelEventHandler.java
index 462cc4223..e5085ecc2 100644
--- a/src/main/java/org/traccar/handler/events/FuelEventHandler.java
+++ b/src/main/java/org/traccar/handler/events/FuelEventHandler.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017 - 2022 Anton Tananaev (anton@traccar.org)
+ * Copyright 2017 - 2023 Anton Tananaev (anton@traccar.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -24,8 +24,8 @@ import org.traccar.model.Event;
import org.traccar.model.Position;
import org.traccar.session.cache.CacheManager;
-import javax.inject.Inject;
-import javax.inject.Singleton;
+import jakarta.inject.Inject;
+import jakarta.inject.Singleton;
import java.util.Map;
@Singleton
@@ -60,13 +60,13 @@ public class FuelEventHandler extends BaseEventHandler {
if (change > 0) {
double threshold = AttributeUtil.lookup(
cacheManager, Keys.EVENT_FUEL_INCREASE_THRESHOLD, position.getDeviceId());
- if (change >= threshold) {
+ if (threshold > 0 && change >= threshold) {
return Map.of(new Event(Event.TYPE_DEVICE_FUEL_INCREASE, position), position);
}
} else if (change < 0) {
double threshold = AttributeUtil.lookup(
cacheManager, Keys.EVENT_FUEL_DROP_THRESHOLD, position.getDeviceId());
- if (Math.abs(change) >= threshold) {
+ if (threshold > 0 && Math.abs(change) >= threshold) {
return Map.of(new Event(Event.TYPE_DEVICE_FUEL_DROP, position), position);
}
}