mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
fix: throwing in case the opcode patterns do not match
This commit is contained in:
parent
3b68d5c65e
commit
f72dd68ec5
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ internal class SignatureResolver(
|
|||
return if (signature.opcodes == null) {
|
||||
PatternScanResult(0, 0)
|
||||
} else {
|
||||
method.implementation?.instructions?.scanFor(signature.opcodes)!!
|
||||
method.implementation?.instructions?.scanFor(signature.opcodes)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue