diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-05-30 16:19:50 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-30 16:19:50 +1200 |
commit | 6464535a57284d3243e715ee424e39e5834596cb (patch) | |
tree | 319299aee3b1cab390547996ec08e3cfe6a40026 /src/org/traccar/protocol/Gl200TextProtocolDecoder.java | |
parent | 6d9874c9980cad42df8f4b4f1e47e7efbeb300b1 (diff) | |
parent | 9c2830b50b667b188c844102dd9ed91fd487d386 (diff) | |
download | trackermap-server-6464535a57284d3243e715ee424e39e5834596cb.tar.gz trackermap-server-6464535a57284d3243e715ee424e39e5834596cb.tar.bz2 trackermap-server-6464535a57284d3243e715ee424e39e5834596cb.zip |
Merge pull request #3896 from Abyss777/engineHours_others
Store engine hours in milliseconds for the rest of protocols
Diffstat (limited to 'src/org/traccar/protocol/Gl200TextProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/Gl200TextProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/Gl200TextProtocolDecoder.java b/src/org/traccar/protocol/Gl200TextProtocolDecoder.java index abced9ac3..1c7fe4688 100644 --- a/src/org/traccar/protocol/Gl200TextProtocolDecoder.java +++ b/src/org/traccar/protocol/Gl200TextProtocolDecoder.java @@ -609,7 +609,7 @@ public class Gl200TextProtocolDecoder extends BaseProtocolDecoder { position.set(Position.KEY_THROTTLE, Integer.parseInt(values[index - 1])); } if (BitUtil.check(reportMask, 11)) { - position.set(Position.KEY_HOURS, (long) Double.parseDouble(values[index++]) * 3600000); + position.set(Position.KEY_HOURS, UnitsConverter.msFromHours(Double.parseDouble(values[index++]))); } if (BitUtil.check(reportMask, 12)) { position.set("drivingHours", Double.parseDouble(values[index++])); |