mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-19 20:19:23 +01:00
fix: check for opcode type CONST
This commit is contained in:
parent
81d86b5fe6
commit
e5bb63c7ab
@ -18,7 +18,7 @@ object CreatePlayerOverviewFingerprint : MethodFingerprint(
|
||||
),
|
||||
customFingerprint = { methodDef ->
|
||||
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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user