1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-08 20:39:44 -05:00

Try to fix 32-bit MWS support

This commit is contained in:
Reinhard Pointner 2018-08-13 19:41:06 +07:00
parent ef51f18c24
commit 2aa601fe3b
2 changed files with 1 additions and 6 deletions

View File

@ -122,11 +122,6 @@ public class Main {
configureLicense(f);
System.exit(0);
});
// manually set AUMID for legacy processes
if (isWindowsApp()) {
WinAppUtilities.initializeApplication(getApplicationName());
}
}
int status = new ArgumentProcessor().run(args);

View File

@ -85,7 +85,7 @@ public final class Settings {
}
public static boolean isWindowsApp() {
return File.separatorChar != '/' || isApplicationDeployment("appx", "msi", "zip");
return isApplicationDeployment("appx", "msi", "zip");
}
public static boolean isUbuntuApp() {