From f82d630065fe3022fb88ad7dbecce142538842a4 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Fri, 24 Feb 2023 03:20:44 +0100 Subject: [PATCH] fix(youtube/general-ads): use correct setting to hide related videos in quick actions Signed-off-by: oSumAtrIX --- .../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 44bf07136..27a59ad51 100644 --- a/integrations/java/app/revanced/integrations/patches/GeneralAdsPatch.java +++ b/integrations/java/app/revanced/integrations/patches/GeneralAdsPatch.java @@ -40,7 +40,7 @@ public final class GeneralAdsPatch extends Filter { var webLinkPanel = new BlockRule(SettingsEnum.ADREMOVER_WEB_SEARCH_RESULTS, "web_link_panel"); var horizontalVideoShelf = new BlockRule(SettingsEnum.ADREMOVER_HORIZONTAL_VIDEO_SHELF, "horizontal_video_shelf"); var channelBar = new BlockRule(SettingsEnum.ADREMOVER_CHANNEL_BAR, "channel_bar"); - var relatedVideos = new BlockRule(SettingsEnum.ADREMOVER_CHANNEL_BAR, "fullscreen_related_videos"); + var relatedVideos = new BlockRule(SettingsEnum.ADREMOVER_RELATED_VIDEOS, "fullscreen_related_videos"); var graySeparator = new BlockRule(SettingsEnum.ADREMOVER_GRAY_SEPARATOR, "cell_divider" // layout residue (gray line above the buttoned ad), );