diff --git a/app/src/main/java/app/revanced/integrations/youtube/patches/components/AdsFilter.java b/app/src/main/java/app/revanced/integrations/youtube/patches/components/AdsFilter.java index 99e810e2d5..b1d38c6eb5 100644 --- a/app/src/main/java/app/revanced/integrations/youtube/patches/components/AdsFilter.java +++ b/app/src/main/java/app/revanced/integrations/youtube/patches/components/AdsFilter.java @@ -132,8 +132,9 @@ public boolean isFiltered(@Nullable String identifier, String path, byte[] proto if (exceptions.matches(path)) return false; - if (matchedGroup == fullscreenAd && path.contains("|ImageType|")) { - closeFullscreenAd(); + if (matchedGroup == fullscreenAd) { + if (path.contains("|ImageType|")) closeFullscreenAd(); + return false; // Do not actually filter the fullscreen ad otherwise it will leave a dimmed screen. }