mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-09 13:59:49 -04:00
Try to fix 32-bit MWS support
This commit is contained in:
parent
ef51f18c24
commit
2aa601fe3b
@ -122,11 +122,6 @@ public class Main {
|
|||||||
configureLicense(f);
|
configureLicense(f);
|
||||||
System.exit(0);
|
System.exit(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
// manually set AUMID for legacy processes
|
|
||||||
if (isWindowsApp()) {
|
|
||||||
WinAppUtilities.initializeApplication(getApplicationName());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int status = new ArgumentProcessor().run(args);
|
int status = new ArgumentProcessor().run(args);
|
||||||
|
@ -85,7 +85,7 @@ public final class Settings {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isWindowsApp() {
|
public static boolean isWindowsApp() {
|
||||||
return File.separatorChar != '/' || isApplicationDeployment("appx", "msi", "zip");
|
return isApplicationDeployment("appx", "msi", "zip");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isUbuntuApp() {
|
public static boolean isUbuntuApp() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user