fix(general-ads): null check for identifier

This commit is contained in:
oSumAtrIX 2022-10-03 03:49:31 +02:00
parent b98e6fa169
commit d10c5462f4
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -146,7 +146,7 @@ public class GeneralBytecodeAdsPatch {
return true;
}
if (identifierBlock.isBlocked(identifier)){
if (identifier != null && identifierBlock.isBlocked(identifier)){
LogHelper.debug(GeneralBytecodeAdsPatch.class, "Blocked: " + identifier);
return true;
}