aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/IntellitracFrameDecoder.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/traccar/protocol/IntellitracFrameDecoder.java')
-rw-r--r--src/org/traccar/protocol/IntellitracFrameDecoder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/IntellitracFrameDecoder.java b/src/org/traccar/protocol/IntellitracFrameDecoder.java
index 3b175252d..2cf91bf59 100644
--- a/src/org/traccar/protocol/IntellitracFrameDecoder.java
+++ b/src/org/traccar/protocol/IntellitracFrameDecoder.java
@@ -42,7 +42,7 @@ public class IntellitracFrameDecoder extends LineBasedFrameDecoder {
if (buf.getUnsignedShort(buf.readerIndex()) == 0xFAF8) {
ByteBuf syncMessage = buf.readBytes(8);
if (ctx != null && ctx.channel() != null) {
- ctx.channel().write(new NetworkMessage(syncMessage, ctx.channel().remoteAddress()));
+ ctx.channel().writeAndFlush(new NetworkMessage(syncMessage, ctx.channel().remoteAddress()));
}
}