This commit is contained in:
sirjonasxx 2021-01-17 05:02:55 +01:00
parent 8f99661789
commit fbef4ad4ab

View File

@ -514,6 +514,9 @@ public class HPacket implements StringifyAble {
else if (o instanceof Integer) {
appendInt((Integer)o);
}
else if (o instanceof Short) {
appendShort((Short)o);
}
else if (o instanceof String) {
appendString((String)o, StandardCharsets.UTF_8);
}