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<>();
|
ArrayList<Element> elements = new ArrayList<>();
|
||||||
|
|
||||||
String expr = packet.toExpression(isIncoming ? HMessage.Direction.TOCLIENT : HMessage.Direction.TOSERVER);
|
|
||||||
|
|
||||||
lblHarbleAPI.setText("Messages: " + (HarbleAPIFetcher.HARBLEAPI == null ? "False" : "True"));
|
lblHarbleAPI.setText("Messages: " + (HarbleAPIFetcher.HARBLEAPI == null ? "False" : "True"));
|
||||||
if ((viewMessageName || viewMessageHash) && HarbleAPIFetcher.HARBLEAPI != null) {
|
if ((viewMessageName || viewMessageHash) && HarbleAPIFetcher.HARBLEAPI != null) {
|
||||||
HarbleAPI api = HarbleAPIFetcher.HARBLEAPI;
|
HarbleAPI api = HarbleAPIFetcher.HARBLEAPI;
|
||||||
@ -146,10 +144,13 @@ public class UiLoggerController implements Initializable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
String cleaned = cleanTextContent(expr);
|
if (packet.length() <= 2000) {
|
||||||
if (cleaned.equals(expr)) {
|
String expr = packet.toExpression(isIncoming ? HMessage.Direction.TOCLIENT : HMessage.Direction.TOSERVER);
|
||||||
if (!expr.equals("") && displayStructure && packet.length() <= 2000)
|
String cleaned = cleanTextContent(expr);
|
||||||
elements.add(new Element("\n" + cleanTextContent(expr), "structure"));
|
if (cleaned.equals(expr)) {
|
||||||
|
if (!expr.equals("") && displayStructure)
|
||||||
|
elements.add(new Element("\n" + cleanTextContent(expr), "structure"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user