1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-09 22:09:47 -04:00

Set AUMID manually for legacy processes

This commit is contained in:
Reinhard Pointner 2018-07-23 20:53:11 +07:00
parent 5fcc6f3212
commit da26c42c01

View File

@ -121,12 +121,12 @@ public class Main {
configureLicense(f);
System.exit(0);
});
}
// set AUMID manually for legacy processes
if (isWindowsApp() && !isUWP()) {
if (isWindowsApp()) {
WinAppUtilities.setAppUserModelID(getApplicationName());
}
}
int status = new ArgumentProcessor().run(args);
System.exit(status);