diff options
-rw-r--r-- | src/org/traccar/protocol/AustinNbProtocolDecoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/AustinNbProtocolDecoder.java b/src/org/traccar/protocol/AustinNbProtocolDecoder.java index df1a93102..f13c68e34 100644 --- a/src/org/traccar/protocol/AustinNbProtocolDecoder.java +++ b/src/org/traccar/protocol/AustinNbProtocolDecoder.java @@ -42,7 +42,7 @@ public class AustinNbProtocolDecoder extends BaseProtocolDecoder { .number("(d+);") // angle .number("(d+);") // range .number("(d+);") // out of range - .expression("(.*)") // operator + .expression("(.*)") // operator .any() .compile(); @@ -71,7 +71,7 @@ public class AustinNbProtocolDecoder extends BaseProtocolDecoder { position.set("azimuth", parser.nextInt()); position.set("angle", parser.nextInt()); position.set("range", parser.nextInt()); - position.set("out_of_range", parser.nextInt()); + position.set("outOfRange", parser.nextInt()); position.set("currier", parser.next()); return position; |