diff options
Diffstat (limited to 'src/org/traccar/protocol/DishaProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/DishaProtocolDecoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/DishaProtocolDecoder.java b/src/org/traccar/protocol/DishaProtocolDecoder.java index eab3de9d9..f9b7579d3 100644 --- a/src/org/traccar/protocol/DishaProtocolDecoder.java +++ b/src/org/traccar/protocol/DishaProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com) + * Copyright 2015 - 2016 Anton Tananaev (anton.tananaev@gmail.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -82,7 +82,7 @@ public class DishaProtocolDecoder extends BaseProtocolDecoder { position.setTime(dateBuilder.getDate()); position.setLatitude(parser.nextCoordinate()); - position.setLatitude(parser.nextCoordinate()); + position.setLongitude(parser.nextCoordinate()); position.setSpeed(parser.nextDouble()); position.setCourse(parser.nextDouble()); |