Browse Source

PacketDecoder fixed. #200

master
Nikita 10 years ago
parent
commit
e84b7bfa81
  1. 3
      src/main/java/com/corundumstudio/socketio/protocol/PacketDecoder.java

3
src/main/java/com/corundumstudio/socketio/protocol/PacketDecoder.java

@ -113,9 +113,10 @@ public class PacketDecoder {
return false;
}
}
}
return true;
}
return false;
}
public Packet decodePackets(ByteBuf buffer, ClientHead client) throws IOException {
if (isStringPacket(buffer)) {

Loading…
Cancel
Save