From ef51f18c241662bda6330202225915a01c25227a Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 13 Aug 2018 19:24:51 +0700 Subject: [PATCH] Try to fix 32-bit MWS support --- source/net/filebot/LicenseModel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/LicenseModel.java b/source/net/filebot/LicenseModel.java index b2e06e8e..e12e9323 100644 --- a/source/net/filebot/LicenseModel.java +++ b/source/net/filebot/LicenseModel.java @@ -8,7 +8,7 @@ public enum LicenseModel { MicrosoftStore { - private final Resource AUMID = Resource.lazy(() -> getPackageAppUserModelID().equals("PointPlanck.FileBot")); + private final Resource AUMID = Resource.lazy(() -> getPackageName().startsWith("PointPlanck.FileBot")); @Override public Object check() throws LicenseError {