diff options
Diffstat (limited to 'src/org/traccar/protocol')
-rw-r--r-- | src/org/traccar/protocol/T55ProtocolDecoder.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/T55ProtocolDecoder.java b/src/org/traccar/protocol/T55ProtocolDecoder.java index 0f2da7d65..25b7f367f 100644 --- a/src/org/traccar/protocol/T55ProtocolDecoder.java +++ b/src/org/traccar/protocol/T55ProtocolDecoder.java @@ -101,7 +101,11 @@ public class T55ProtocolDecoder extends BaseProtocolDecoder { if (!sentence.startsWith("$") && sentence.contains("$")) { int index = sentence.indexOf("$"); - identify(sentence.substring(0, index)); + String id = sentence.substring(0, index); + if (id.endsWith(",")) { + id = id.substring(0, id.length() - 1); + } + identify(id); sentence = sentence.substring(index); } |