mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2024-11-13 02:14:28 +01:00
fix: check for opcode type CONST
This commit is contained in:
parent
81d86b5fe6
commit
e5bb63c7ab
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue