This commit is contained in:
sirjonasxx 2020-10-06 04:07:49 +02:00
parent 1f58290393
commit 17a7406578

View File

@ -216,10 +216,10 @@ public class ExtensionHandler {
@Override @Override
protected void packetToStringRequest(HPacket packet) { protected void packetToStringRequest(HPacket packet) {
String s = ""; String s = "";
String expression = "s"; String expression = "";
try { try {
s = packet.toString(); s = packet.toString();
if (packet.length() > 3000) { if (packet.length() < 3000) {
expression = packet.toExpression(); expression = packet.toExpression();
} }
} }