diff --git a/app/src/main/java/app/revanced/integrations/patches/GeneralBytecodeAdsPatch.java b/app/src/main/java/app/revanced/integrations/patches/GeneralBytecodeAdsPatch.java index e5a6abf3..11561650 100644 --- a/app/src/main/java/app/revanced/integrations/patches/GeneralBytecodeAdsPatch.java +++ b/app/src/main/java/app/revanced/integrations/patches/GeneralBytecodeAdsPatch.java @@ -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; }