From 01b7edfdb45fc77b760b441627971d29af9ea60f Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 11 Nov 2019 21:09:01 -0800 Subject: Use correct decoder --- src/main/java/org/traccar/protocol/OutsafeProtocol.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/java/org/traccar/protocol/OutsafeProtocol.java b/src/main/java/org/traccar/protocol/OutsafeProtocol.java index ece433e3f..c728a404d 100644 --- a/src/main/java/org/traccar/protocol/OutsafeProtocol.java +++ b/src/main/java/org/traccar/protocol/OutsafeProtocol.java @@ -31,7 +31,7 @@ public class OutsafeProtocol extends BaseProtocol { pipeline.addLast(new HttpResponseEncoder()); pipeline.addLast(new HttpRequestDecoder()); pipeline.addLast(new HttpObjectAggregator(65535)); - pipeline.addLast(new SigfoxProtocolDecoder(OutsafeProtocol.this)); + pipeline.addLast(new OutsafeProtocolDecoder(OutsafeProtocol.this)); } }); } -- cgit v1.2.3