mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-13 03:22:36 +00:00
#499 Cannot save via Proxy fixed
This commit is contained in:
@@ -65,7 +65,12 @@ public class SWFSourceInfo {
|
||||
|
||||
public boolean isBundle() {
|
||||
if (inputStream == null) {
|
||||
String extension = Helper.getExtension(new File(file));
|
||||
File fileObj = new File(file);
|
||||
String fileName = fileObj.getName();
|
||||
if (fileName.startsWith("asdec_") && fileName.endsWith(".tmp")) {
|
||||
return false;
|
||||
}
|
||||
String extension = Helper.getExtension(fileObj);
|
||||
return !(extension.equals(".swf") || extension.equals(".gfx"));
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user