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

Try to fix 32-bit MWS support

This commit is contained in:
Reinhard Pointner 2018-08-13 19:24:51 +07:00
parent a1c6251150
commit ef51f18c24

View File

@ -8,7 +8,7 @@ public enum LicenseModel {
MicrosoftStore {
private final Resource<Boolean> AUMID = Resource.lazy(() -> getPackageAppUserModelID().equals("PointPlanck.FileBot"));
private final Resource<Boolean> AUMID = Resource.lazy(() -> getPackageName().startsWith("PointPlanck.FileBot"));
@Override
public Object check() throws LicenseError {