From df6cbb31d2d92f10a86e64835e291be0a17f7180 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Tue, 14 Feb 2023 07:15:25 +0100 Subject: [PATCH] fix(youtube/general-ads): block other kind of survey --- .../java/app/revanced/integrations/patches/GeneralAdsPatch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/java/app/revanced/integrations/patches/GeneralAdsPatch.java b/integrations/java/app/revanced/integrations/patches/GeneralAdsPatch.java index d8cecff55..13d65db57 100644 --- a/integrations/java/app/revanced/integrations/patches/GeneralAdsPatch.java +++ b/integrations/java/app/revanced/integrations/patches/GeneralAdsPatch.java @@ -26,7 +26,7 @@ public final class GeneralAdsPatch extends Filter { var subscribersCommunityGuidelines = new BlockRule(SettingsEnum.ADREMOVER_SUBSCRIBERS_COMMUNITY_GUIDELINES_REMOVAL, "sponsorships_comments_upsell"); var channelMemberShelf = new BlockRule(SettingsEnum.ADREMOVER_CHANNEL_MEMBER_SHELF_REMOVAL, "member_recognition_shelf"); var compactBanner = new BlockRule(SettingsEnum.ADREMOVER_COMPACT_BANNER_REMOVAL, "compact_banner"); - var inFeedSurvey = new BlockRule(SettingsEnum.ADREMOVER_FEED_SURVEY_REMOVAL, "in_feed_survey"); + var inFeedSurvey = new BlockRule(SettingsEnum.ADREMOVER_FEED_SURVEY_REMOVAL, "in_feed_survey", "slimline_survey"); var medicalPanel = new BlockRule(SettingsEnum.ADREMOVER_MEDICAL_PANEL_REMOVAL, "medical_panel"); var paidContent = new BlockRule(SettingsEnum.ADREMOVER_PAID_CONTENT_REMOVAL, "paid_content_overlay"); var merchandise = new BlockRule(SettingsEnum.ADREMOVER_MERCHANDISE_REMOVAL, "product_carousel");