Merge pull request #164 from P0nk/fix/custom-charset-string #patch

Fix writeString not fully respecting charset
This commit is contained in:
Ponk
2023-03-02 18:13:52 +01:00
committed by GitHub

View File

@@ -71,8 +71,9 @@ public class ByteBufOutPacket implements OutPacket {
@Override
public void writeString(String value) {
writeShort((short) value.length());
writeBytes(value.getBytes(CharsetConstants.CHARSET));
byte[] bytes = value.getBytes(CharsetConstants.CHARSET);
writeShort(bytes.length);
writeBytes(bytes);
}
@Override