Skip to content

Commit

Permalink
fix(Youtube - Tablet Miniplayer): Broken controls (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
rufusin authored Apr 27, 2024
1 parent 2be2720 commit 1b60113
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@ import com.android.tools.smali.dexlib2.Opcode
object MiniPlayerOverrideNoContextFingerprint : MethodFingerprint(
returnType = "Z",
accessFlags = AccessFlags.PRIVATE or AccessFlags.FINAL,
opcodes = listOf(Opcode.RETURN), // anchor to insert the instruction
)
opcodes = listOf(
Opcode.IGET_BOOLEAN,
Opcode.RETURN
), // anchor to insert the instruction
)

0 comments on commit 1b60113

Please sign in to comment.