mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 08:10:45 +00:00
Fixed some tag reading errors in #1833.
This commit is contained in:
@@ -146,6 +146,9 @@ public class DumpTree extends JTree {
|
||||
nodeType = TreeNodeType.FLASH;
|
||||
} else if ("TAG".equals(di.type)) {
|
||||
String name = di.name;
|
||||
if (name == null) {
|
||||
name = "null";
|
||||
}
|
||||
if (name.contains(" ")) {
|
||||
name = name.substring(0, name.indexOf(' ')).trim();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user