diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-01-31 00:38:03 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-01-31 00:38:03 +1300 |
commit | dc53f34f5f823fcea8ec3a94c78716262e4fb42f (patch) | |
tree | 70332ef5cd31037fa4438c1a0fc7c377c534958f /src/org/traccar/protocol | |
parent | 672bad5be540ab114c6739567c130215724c6f05 (diff) | |
download | trackermap-server-dc53f34f5f823fcea8ec3a94c78716262e4fb42f.tar.gz trackermap-server-dc53f34f5f823fcea8ec3a94c78716262e4fb42f.tar.bz2 trackermap-server-dc53f34f5f823fcea8ec3a94c78716262e4fb42f.zip |
Add new MiniFinder message types
Diffstat (limited to 'src/org/traccar/protocol')
-rw-r--r-- | src/org/traccar/protocol/MiniFinderProtocolDecoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/MiniFinderProtocolDecoder.java b/src/org/traccar/protocol/MiniFinderProtocolDecoder.java index eda085bc3..631a4b56b 100644 --- a/src/org/traccar/protocol/MiniFinderProtocolDecoder.java +++ b/src/org/traccar/protocol/MiniFinderProtocolDecoder.java @@ -33,7 +33,7 @@ public class MiniFinderProtocolDecoder extends BaseProtocolDecoder { } private static final Pattern PATTERN = new PatternBuilder() - .expression("![AD],") + .expression("![A-D],") .number("(d+)/(d+)/(d+),") // date .number("(d+):(d+):(d+),") // time .number("(-?d+.d+),") // latitude @@ -62,7 +62,7 @@ public class MiniFinderProtocolDecoder extends BaseProtocolDecoder { identify(sentence.substring(3, sentence.length()), channel, remoteAddress); - } else if ((sentence.startsWith("!D") || sentence.startsWith("!A")) && hasDeviceId()) { + } else if (sentence.matches("![A-D].*") && hasDeviceId()) { Parser parser = new Parser(PATTERN, sentence); if (!parser.matches()) { |