aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/WondexProtocolDecoder.java
diff options
context:
space:
mode:
authorFlorian <florian@voit.li>2017-06-14 20:59:05 +0200
committerFlorian <florian@voit.li>2017-06-15 10:04:56 +0200
commit36788f4eb8ef055c8409d744515de3ef4ef037c2 (patch)
treee16437d3e68e66c1689d9a6ed257e45a6f86671e /src/org/traccar/protocol/WondexProtocolDecoder.java
parente10e10fee9c96cbcd4e79d8616632654df2eed97 (diff)
downloadtrackermap-server-36788f4eb8ef055c8409d744515de3ef4ef037c2.tar.gz
trackermap-server-36788f4eb8ef055c8409d744515de3ef4ef037c2.tar.bz2
trackermap-server-36788f4eb8ef055c8409d744515de3ef4ef037c2.zip
Filter Invalid upgrade and Wondex fix
Filter invalid filters now impossible positions. And in Wondex protocol answers to messages are no longer marked as invalid and Sat over 2 check removed. Wondex decoder test changed because of the removed Sat over 2 check
Diffstat (limited to 'src/org/traccar/protocol/WondexProtocolDecoder.java')
-rw-r--r--src/org/traccar/protocol/WondexProtocolDecoder.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/WondexProtocolDecoder.java b/src/org/traccar/protocol/WondexProtocolDecoder.java
index 8249d2c68..b1e63e154 100644
--- a/src/org/traccar/protocol/WondexProtocolDecoder.java
+++ b/src/org/traccar/protocol/WondexProtocolDecoder.java
@@ -78,7 +78,6 @@ public class WondexProtocolDecoder extends BaseProtocolDecoder {
position.setProtocol(getProtocolName());
position.setDeviceId(deviceSession.getDeviceId());
getLastLocation(position, new Date());
- position.setValid(false);
position.set(Position.KEY_RESULT, buf.toString(StandardCharsets.US_ASCII));
return position;
@@ -107,7 +106,7 @@ public class WondexProtocolDecoder extends BaseProtocolDecoder {
position.setAltitude(parser.nextDouble(0));
int satellites = parser.nextInt(0);
- position.setValid(satellites >= 3);
+ position.setValid(true);
position.set(Position.KEY_SATELLITES, satellites);
position.set(Position.KEY_EVENT, parser.next());