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 a new issue