From 4ef5714ce48f73669d35b91c96de18e586a7b222 Mon Sep 17 00:00:00 2001 From: inotia00 Date: Sun, 30 Apr 2023 18:20:28 +0900 Subject: [PATCH] feat(hide-cast-button): no longer dependent on `microg-support` patch https://github.com/inotia00/ReVanced_Extended/issues/866 --- .../youtube/misc/microg/bytecode/patch/MicroGBytecodePatch.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/bytecode/patch/MicroGBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/bytecode/patch/MicroGBytecodePatch.kt index 4910c56f0..1f08b9154 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/misc/microg/bytecode/patch/MicroGBytecodePatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/misc/microg/bytecode/patch/MicroGBytecodePatch.kt @@ -9,7 +9,6 @@ import app.revanced.patcher.patch.PatchResultSuccess import app.revanced.patcher.patch.annotations.DependsOn import app.revanced.patches.shared.annotation.YouTubeCompatibility import app.revanced.patches.shared.patch.options.PatchOptions -import app.revanced.patches.youtube.layout.player.castbutton.patch.HideCastButtonPatch import app.revanced.patches.youtube.misc.clientspoof.patch.ClientSpoofPatch import app.revanced.patches.youtube.misc.microg.bytecode.fingerprints.* import app.revanced.patches.youtube.misc.microg.shared.Constants.PACKAGE_NAME @@ -20,7 +19,6 @@ import app.revanced.util.microg.MicroGBytecodeHelper @DependsOn( [ ClientSpoofPatch::class, - HideCastButtonPatch::class, PatchOptions::class ] )