diff options
Diffstat (limited to 'src/org/traccar/protocol/GnxProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/GnxProtocolDecoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/GnxProtocolDecoder.java b/src/org/traccar/protocol/GnxProtocolDecoder.java index cb29f5d23..070d394e8 100644 --- a/src/org/traccar/protocol/GnxProtocolDecoder.java +++ b/src/org/traccar/protocol/GnxProtocolDecoder.java @@ -89,14 +89,14 @@ public class GnxProtocolDecoder extends BaseProtocolDecoder { } position.setDeviceId(deviceSession.getDeviceId()); - if (parser.nextInt() == 1) { + if (parser.nextInt(0) == 1) { position.set(Position.KEY_ARCHIVE, true); } position.setDeviceTime(parser.nextDateTime(Parser.DateTimeFormat.HMS_DMY, "GMT+5:30")); position.setFixTime(parser.nextDateTime(Parser.DateTimeFormat.HMS_DMY, "GMT+5:30")); - position.setValid(parser.nextInt() != 0); + position.setValid(parser.nextInt(0) != 0); position.setLatitude(parser.nextCoordinate(Parser.CoordinateFormat.DEG_HEM)); position.setLongitude(parser.nextCoordinate(Parser.CoordinateFormat.DEG_HEM)); |