-
-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(messenger): add `disable-switching-emoji-to-sticker-in-message-i…
…nput-field` patch (#2099) Co-authored-by: oSumAtrIX <[email protected]>
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
...ed/patches/messenger/inputfield/fingerprints/SwitchMessangeInputEmojiButtonFingerprint.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package app.revanced.patches.messenger.inputfield.fingerprints | ||
|
||
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint | ||
import org.jf.dexlib2.Opcode | ||
|
||
object SwitchMessangeInputEmojiButtonFingerprint : MethodFingerprint( | ||
returnType = "V", | ||
parameters = listOf("L", "Z"), | ||
strings = listOf("afterTextChanged", "expression_search"), | ||
opcodes = listOf( | ||
Opcode.IGET_OBJECT, | ||
Opcode.IF_EQZ, | ||
Opcode.CONST_STRING, | ||
Opcode.GOTO, | ||
Opcode.CONST_STRING, | ||
Opcode.GOTO | ||
) | ||
) |
37 changes: 37 additions & 0 deletions
37
...d/patches/messenger/inputfield/patch/DisableSwitchingEmojiToStickerInMessageInputField.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package app.revanced.patches.messenger.inputfield.patch | ||
|
||
import app.revanced.extensions.toErrorResult | ||
import app.revanced.patcher.annotation.* | ||
import app.revanced.patcher.data.BytecodeContext | ||
import app.revanced.patcher.extensions.instruction | ||
import app.revanced.patcher.extensions.replaceInstruction | ||
import app.revanced.patcher.patch.BytecodePatch | ||
import app.revanced.patcher.patch.PatchResult | ||
import app.revanced.patcher.patch.PatchResultSuccess | ||
import app.revanced.patcher.patch.annotations.Patch | ||
import app.revanced.patches.messenger.inputfield.fingerprints.SwitchMessangeInputEmojiButtonFingerprint | ||
import org.jf.dexlib2.iface.instruction.OneRegisterInstruction | ||
|
||
@Patch | ||
@Name("disable-switching-emoji-to-sticker-in-message-input-field") | ||
@Description("Disables switching from emoji to sticker search mode in message input field") | ||
@Compatibility([Package("com.facebook.orca")]) | ||
@Version("0.0.1") | ||
class DisableSwitchingEmojiToStickerInMessageInputField : BytecodePatch(listOf(SwitchMessangeInputEmojiButtonFingerprint)) { | ||
override fun execute(context: BytecodeContext): PatchResult { | ||
SwitchMessangeInputEmojiButtonFingerprint.result?.let { | ||
val setStringIndex = it.scanResult.patternScanResult!!.startIndex + 2 | ||
|
||
it.mutableMethod.apply { | ||
val targetRegister = instruction<OneRegisterInstruction>(setStringIndex).registerA | ||
|
||
replaceInstruction( | ||
setStringIndex, | ||
"const-string v$targetRegister, \"expression\"" | ||
) | ||
} | ||
} ?: throw SwitchMessangeInputEmojiButtonFingerprint.toErrorResult() | ||
|
||
return PatchResultSuccess() | ||
} | ||
} |