diff options
Diffstat (limited to 'src/org/traccar/protocol/Gps103ProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/Gps103ProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/Gps103ProtocolDecoder.java b/src/org/traccar/protocol/Gps103ProtocolDecoder.java index 3f21beea8..fcfcb3dbb 100644 --- a/src/org/traccar/protocol/Gps103ProtocolDecoder.java +++ b/src/org/traccar/protocol/Gps103ProtocolDecoder.java @@ -73,7 +73,7 @@ public class Gps103ProtocolDecoder extends BaseProtocolDecoder { if (channel != null) { channel.write("LOAD", remoteAddress); Matcher handshakeMatcher = handshakePattern.matcher(sentence); - if(handshakeMatcher.matches()) { + if (handshakeMatcher.matches()) { identify(handshakeMatcher.group(1), channel); } } |