mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-05-03 16:14:29 +02:00
fix(general-ads): null check for identifier
This commit is contained in:
parent
b98e6fa169
commit
d10c5462f4
@ -146,7 +146,7 @@ public class GeneralBytecodeAdsPatch {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (identifierBlock.isBlocked(identifier)){
|
if (identifier != null && identifierBlock.isBlocked(identifier)){
|
||||||
LogHelper.debug(GeneralBytecodeAdsPatch.class, "Blocked: " + identifier);
|
LogHelper.debug(GeneralBytecodeAdsPatch.class, "Blocked: " + identifier);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user