mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-01 05:31:33 +00:00
Fixed #2428 Charset setting on FLA export in format MX and below,
Default charset for SWFS v5 and lower is WINDOWS-1252
This commit is contained in:
@@ -1201,7 +1201,7 @@ public class Main {
|
||||
String shortName = fileTitle != null ? fileTitle : file;
|
||||
String fileKey = shortName == null ? "" : new File(shortName).getName();
|
||||
SwfSpecificCustomConfiguration conf = Configuration.getSwfSpecificCustomConfiguration(fileKey);
|
||||
String charset = conf == null ? Charset.defaultCharset().name() : conf.getCustomData(CustomConfigurationKeys.KEY_CHARSET, Charset.defaultCharset().name());
|
||||
String charset = conf == null ? Charset.defaultCharset().name() : conf.getCustomData(CustomConfigurationKeys.KEY_CHARSET, "WINDOWS-1252");
|
||||
List<String> loadedUrls = new ArrayList<>();
|
||||
List<String> loadedStatus = new ArrayList<>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user