From 807e191200de1b9e6dd19c35bf7402c4e587cb82 Mon Sep 17 00:00:00 2001 From: inotia00 Date: Tue, 14 Mar 2023 05:18:58 +0900 Subject: [PATCH] refactor(hide-shorts-component): move some components to general-ads --- .../general/shortscomponent/patch/ShortsComponentPatch.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/general/shortscomponent/patch/ShortsComponentPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/general/shortscomponent/patch/ShortsComponentPatch.kt index d7f1cd163..830c66343 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/layout/general/shortscomponent/patch/ShortsComponentPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/general/shortscomponent/patch/ShortsComponentPatch.kt @@ -17,6 +17,7 @@ import app.revanced.patcher.patch.annotations.DependsOn import app.revanced.patcher.patch.annotations.Patch import app.revanced.patches.shared.annotation.YouTubeCompatibility import app.revanced.patches.shared.patch.mapping.ResourceMappingPatch +import app.revanced.patches.youtube.ads.general.bytecode.patch.GeneralAdsBytecodePatch import app.revanced.patches.youtube.layout.general.shortscomponent.fingerprints.* import app.revanced.patches.youtube.misc.litho.patch.LithoFilterPatch import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch @@ -38,6 +39,7 @@ import org.jf.dexlib2.iface.reference.FieldReference @Description("Hides other Shorts components.") @DependsOn( [ + GeneralAdsBytecodePatch::class, LithoFilterPatch::class, PlayerTypeHookPatch::class, ResourceMappingPatch::class,