From 4d2fd8ff06808851cdfa4b71443e6a04246d0cb5 Mon Sep 17 00:00:00 2001 From: inotia00 Date: Tue, 1 Aug 2023 05:15:55 +0900 Subject: [PATCH] fix(youtube): some dependence is missing https://github.com/inotia00/ReVanced_Extended/issues/1291 --- .../youtube/buttomplayer/comment/patch/CommentComponentPatch.kt | 1 + .../patches/youtube/video/speed/patch/PlaybackSpeedPatch.kt | 1 + 2 files changed, 2 insertions(+) diff --git a/src/main/kotlin/app/revanced/patches/youtube/buttomplayer/comment/patch/CommentComponentPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/buttomplayer/comment/patch/CommentComponentPatch.kt index 164f7e8b7..bf004a7ee 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/buttomplayer/comment/patch/CommentComponentPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/buttomplayer/comment/patch/CommentComponentPatch.kt @@ -20,6 +20,7 @@ import app.revanced.util.integrations.Constants.PATCHES_PATH @Description("Hides components related to comments.") @DependsOn( [ + LithoFilterPatch::class, GeneralAdsBytecodePatch::class, SettingsPatch::class ] diff --git a/src/main/kotlin/app/revanced/patches/youtube/video/speed/patch/PlaybackSpeedPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/video/speed/patch/PlaybackSpeedPatch.kt index 52434c2b1..bc38330f4 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/video/speed/patch/PlaybackSpeedPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/video/speed/patch/PlaybackSpeedPatch.kt @@ -28,6 +28,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction @DependsOn( [ OverrideSpeedHookPatch::class, + SettingsPatch::class, VideoCpnPatch::class ] )