1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-05 00:45:06 -05:00
This commit is contained in:
Reinhard Pointner 2018-07-21 22:43:44 +07:00
parent 9268fd5b52
commit f55f9f6322

View File

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