From 3f5122cbaf1710ae8d6c1c7ca9cf6a647f9a3f94 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 17 Jun 2017 11:35:06 +1200 Subject: Fix H02 short message handling --- src/org/traccar/protocol/H02ProtocolDecoder.java | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'src/org') diff --git a/src/org/traccar/protocol/H02ProtocolDecoder.java b/src/org/traccar/protocol/H02ProtocolDecoder.java index b9b979c7d..aa3d47650 100644 --- a/src/org/traccar/protocol/H02ProtocolDecoder.java +++ b/src/org/traccar/protocol/H02ProtocolDecoder.java @@ -377,14 +377,19 @@ public class H02ProtocolDecoder extends BaseProtocolDecoder { case "*": String sentence = buf.toString(StandardCharsets.US_ASCII); int typeStart = sentence.indexOf(',', sentence.indexOf(',') + 1) + 1; - String type = sentence.substring(typeStart, sentence.indexOf(',', typeStart)); - switch (type) { - case "NBR": - return decodeLbs(sentence, channel, remoteAddress); - case "LINK": - return decodeLink(sentence, channel, remoteAddress); - default: - return decodeText(sentence, channel, remoteAddress); + int typeEnd = sentence.indexOf(',', typeStart); + if (typeEnd > 0) { + String type = sentence.substring(typeStart, typeEnd); + switch (type) { + case "NBR": + return decodeLbs(sentence, channel, remoteAddress); + case "LINK": + return decodeLink(sentence, channel, remoteAddress); + default: + return decodeText(sentence, channel, remoteAddress); + } + } else { + return null; } case "$": return decodeBinary(buf, channel, remoteAddress); -- cgit v1.2.3