mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-14 19:46:49 +01:00
fix(general-ads): null check for identifier
This commit is contained in:
parent
ce4b1c6043
commit
9a4c46a406
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user