mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 00:45:06 -05:00
Fix NPE
This commit is contained in:
parent
9268fd5b52
commit
f55f9f6322
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user