mirror of
https://github.com/revanced/revanced-integrations.git
synced 2024-12-02 16:52:55 +01:00
perf(youtube/general-ads-patch): reduce amount of components to filter (#204)
This commit is contained in:
parent
b4e03412ee
commit
502feaf444
@ -214,7 +214,7 @@ class GeneralBytecodeAdsPatch extends Filter {
|
|||||||
//"full_width_square_image_layout",
|
//"full_width_square_image_layout",
|
||||||
"video_display_full_buttoned_layout",
|
"video_display_full_buttoned_layout",
|
||||||
"_ad",
|
"_ad",
|
||||||
"ad_",
|
"ad_badge",
|
||||||
"ads_video_with_context",
|
"ads_video_with_context",
|
||||||
"banner_text_icon",
|
"banner_text_icon",
|
||||||
"cell_divider",
|
"cell_divider",
|
||||||
@ -258,16 +258,11 @@ class GeneralBytecodeAdsPatch extends Filter {
|
|||||||
public boolean filter(final String path, final String identifier) {
|
public boolean filter(final String path, final String identifier) {
|
||||||
// Do not block on these
|
// Do not block on these
|
||||||
if (ReVancedUtils.containsAny(path,
|
if (ReVancedUtils.containsAny(path,
|
||||||
|
"comment_thread",
|
||||||
"home_video_with_context",
|
"home_video_with_context",
|
||||||
"related_video_with_context",
|
"related_video_with_context",
|
||||||
"search_video_with_context",
|
"search_video_with_context",
|
||||||
"download_",
|
"horizontal_shelf"
|
||||||
"library_recent_shelf",
|
|
||||||
"menu",
|
|
||||||
"root",
|
|
||||||
"-count",
|
|
||||||
"-space",
|
|
||||||
"-button"
|
|
||||||
)) return false;
|
)) return false;
|
||||||
|
|
||||||
for (var rule : register) {
|
for (var rule : register) {
|
||||||
|
Loading…
Reference in New Issue
Block a user