Skip to content

Commit

Permalink
fix(general-ads): null check for identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Oct 3, 2022
1 parent b98e6fa commit d10c546
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -146,7 +146,7 @@ public static boolean isAdComponent(StringBuilder pathBuilder, String identifier
return true;
}

if (identifierBlock.isBlocked(identifier)){
if (identifier != null && identifierBlock.isBlocked(identifier)){
LogHelper.debug(GeneralBytecodeAdsPatch.class, "Blocked: " + identifier);
return true;
}
Expand Down

0 comments on commit d10c546

Please sign in to comment.