mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-23 08:50:52 +01:00
thing1
This commit is contained in:
parent
cd109c9b4b
commit
8f99661789
@ -94,8 +94,6 @@ public class UiLoggerController implements Initializable {
|
||||
|
||||
ArrayList<Element> elements = new ArrayList<>();
|
||||
|
||||
String expr = packet.toExpression(isIncoming ? HMessage.Direction.TOCLIENT : HMessage.Direction.TOSERVER);
|
||||
|
||||
lblHarbleAPI.setText("Messages: " + (HarbleAPIFetcher.HARBLEAPI == null ? "False" : "True"));
|
||||
if ((viewMessageName || viewMessageHash) && HarbleAPIFetcher.HARBLEAPI != null) {
|
||||
HarbleAPI api = HarbleAPIFetcher.HARBLEAPI;
|
||||
@ -146,11 +144,14 @@ public class UiLoggerController implements Initializable {
|
||||
}
|
||||
}
|
||||
|
||||
if (packet.length() <= 2000) {
|
||||
String expr = packet.toExpression(isIncoming ? HMessage.Direction.TOCLIENT : HMessage.Direction.TOSERVER);
|
||||
String cleaned = cleanTextContent(expr);
|
||||
if (cleaned.equals(expr)) {
|
||||
if (!expr.equals("") && displayStructure && packet.length() <= 2000)
|
||||
if (!expr.equals("") && displayStructure)
|
||||
elements.add(new Element("\n" + cleanTextContent(expr), "structure"));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
elements.add(new Element("\n--------------------\n", ""));
|
||||
|
Loading…
Reference in New Issue
Block a user