WIP Safe strings handling

This commit is contained in:
Jindra Petřík
2025-07-25 10:49:33 +02:00
parent ffe9e4d506
commit 12ab8af322
139 changed files with 679 additions and 459 deletions

View File

@@ -258,9 +258,9 @@ public class FolderListPanel extends JPanel {
if (expName != null && !expName.isEmpty()) {
String[] pathParts = expName.contains(".") ? expName.split("\\.") : new String[]{expName};
if (expName.startsWith("__Packages.")) {
s = IdentifiersDeobfuscation.printIdentifier(false, pathParts[pathParts.length - 1]);
s = IdentifiersDeobfuscation.printIdentifier(tag.getSwf(), false, pathParts[pathParts.length - 1]);
} else {
s = Helper.escapeExportname(expName, false);
s = Helper.escapeExportname(tag.getSwf(), expName, false);
}
}
}