mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-10 07:19:24 +01:00
fix(hide-email-address): invalid instruction offsets (#654)
This commit is contained in:
parent
6f054c75b3
commit
93d47cc9c7
@ -55,10 +55,10 @@ class HideEmailAddressPatch : BytecodePatch(
|
||||
|
||||
val setVisibilityConstIndex = accountSwitcherAccessibilityLabelInstruction.indexOfFirst {
|
||||
(it as? WideLiteralInstruction)?.wideLiteral == accountSwitcherAccessibilityLabelId
|
||||
} - 2
|
||||
} - 1
|
||||
|
||||
val setVisibilityConstRegister = (accountSwitcherAccessibilityLabelInstruction[setVisibilityConstIndex] as OneRegisterInstruction).registerA
|
||||
val toggleRegister = (setVisibilityConstRegister - 3)
|
||||
val toggleRegister = (setVisibilityConstRegister + 1)
|
||||
|
||||
accountSwitcherAccessibilityLabelMethod.addInstructions(
|
||||
setVisibilityConstIndex + 1, """
|
||||
|
Loading…
Reference in New Issue
Block a user