mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-06-13 05:37:41 +02:00
fix: check for opcode type CONST
This commit is contained in:
@ -18,7 +18,7 @@ object CreatePlayerOverviewFingerprint : MethodFingerprint(
|
|||||||
),
|
),
|
||||||
customFingerprint = { methodDef ->
|
customFingerprint = { methodDef ->
|
||||||
methodDef.implementation?.instructions?.any {
|
methodDef.implementation?.instructions?.any {
|
||||||
if (it.opcode != Opcode.INVOKE_VIRTUAL) return@any false
|
if (it.opcode != Opcode.CONST) return@any false
|
||||||
|
|
||||||
val literal = (it as WideLiteralInstruction).wideLiteral
|
val literal = (it as WideLiteralInstruction).wideLiteral
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user