Skip to content

Commit

Permalink
fix: wrong opcode for create-button-method
Browse files Browse the repository at this point in the history
Added in latest(?) version of the app.
  • Loading branch information
Sculas committed Apr 14, 2022
1 parent 6d4158a commit 3214650
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CreateButtonRemoverPatch : Patch(
PatternScanMethod.Fuzzy(2), // FIXME: Test this threshold and find the best value.
compatiblePackages,
"Signature for the method required to be patched.",
"0.0.2"
"0.0.3"
),
"V",
AccessFlags.PUBLIC or AccessFlags.FINAL,
Expand Down Expand Up @@ -70,7 +70,7 @@ class CreateButtonRemoverPatch : Patch(
Opcode.INVOKE_VIRTUAL,
Opcode.MOVE_RESULT_OBJECT,
Opcode.INVOKE_STATIC,
Opcode.MOVE_OBJECT
Opcode.MOVE_RESULT_OBJECT
)
)
)
Expand Down

0 comments on commit 3214650

Please sign in to comment.