From 7b182cab825ee3a4a3ca528c744c9d2a351c7cf8 Mon Sep 17 00:00:00 2001 From: LisoUseInAIKyrios <118716522+LisoUseInAIKyrios@users.noreply.github.com> Date: Tue, 27 May 2025 08:47:09 +0200 Subject: [PATCH] fix(Messenger): Remove outdated `Disable switching emoji to sticker` patch (#5044) --- .../inputfield/DisableSwitchingEmojiToStickerPatch.kt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/patches/src/main/kotlin/app/revanced/patches/messenger/inputfield/DisableSwitchingEmojiToStickerPatch.kt b/patches/src/main/kotlin/app/revanced/patches/messenger/inputfield/DisableSwitchingEmojiToStickerPatch.kt index 19f5c1251..b9e301725 100644 --- a/patches/src/main/kotlin/app/revanced/patches/messenger/inputfield/DisableSwitchingEmojiToStickerPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/messenger/inputfield/DisableSwitchingEmojiToStickerPatch.kt @@ -5,9 +5,14 @@ import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction import app.revanced.patcher.patch.bytecodePatch import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction +/** + * This patch will be deleted soon. + * + * Pull requests to update this patch to the latest app target are invited. + */ +@Deprecated("This patch only works with an outdated app target that is no longer fully supported by Facebook.") @Suppress("unused") val disableSwitchingEmojiToStickerPatch = bytecodePatch( - name = "Disable switching emoji to sticker", description = "Disables switching from emoji to sticker search mode in message input field.", ) { compatibleWith("com.facebook.orca"("439.0.0.29.119"))