Skip to content

Commit

Permalink
Add null check
Browse files Browse the repository at this point in the history
  • Loading branch information
rayokota committed Nov 22, 2023
1 parent 3f8d16f commit 2f93432
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -59,7 +59,7 @@ public void register(

@Override
public boolean initialized() {
return dekRegistry.initialized();
return dekRegistry != null && dekRegistry.initialized();
}

@Override
Expand Down

0 comments on commit 2f93432

Please sign in to comment.