mirror of
https://github.com/revanced/revanced-integrations.git
synced 2024-11-14 16:09:37 +01:00
fix(YouTube - Hide ads): Do not leave screen at launch non interactable when hiding fullscreen ads
This commit is contained in:
parent
28847d85b3
commit
fbdb4908ea
@ -132,8 +132,9 @@ public final class AdsFilter extends Filter {
|
|||||||
if (exceptions.matches(path))
|
if (exceptions.matches(path))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (matchedGroup == fullscreenAd && path.contains("|ImageType|")) {
|
if (matchedGroup == fullscreenAd) {
|
||||||
closeFullscreenAd();
|
if (path.contains("|ImageType|")) closeFullscreenAd();
|
||||||
|
|
||||||
return false; // Do not actually filter the fullscreen ad otherwise it will leave a dimmed screen.
|
return false; // Do not actually filter the fullscreen ad otherwise it will leave a dimmed screen.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user