diff --git a/app/src/main/java/app/revanced/integrations/patches/components/HideInfoCardsFilterPatch.java b/app/src/main/java/app/revanced/integrations/patches/components/HideInfoCardsFilterPatch.java new file mode 100644 index 00000000..fc1f9a1e --- /dev/null +++ b/app/src/main/java/app/revanced/integrations/patches/components/HideInfoCardsFilterPatch.java @@ -0,0 +1,15 @@ +package app.revanced.integrations.patches.components; + +import app.revanced.integrations.settings.SettingsEnum; + +public final class HideInfoCardsFilterPatch extends Filter { + + public HideInfoCardsFilterPatch() { + identifierFilterGroupList.addAll( + new StringFilterGroup( + SettingsEnum.HIDE_INFO_CARDS, + "info_card_teaser_overlay.eml" + ) + ); + } +}