mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
fix: MethodSignature#resolved throwing an exception
This commit is contained in:
parent
fd630cd429
commit
82b1e66d54
1 changed files with 5 additions and 1 deletions
|
@ -30,7 +30,11 @@ class MethodSignature(
|
|||
}
|
||||
val resolved: Boolean
|
||||
get() {
|
||||
return result != null
|
||||
var resolved = false
|
||||
try {
|
||||
resolved = result != null
|
||||
} catch (_: Exception) {}
|
||||
return resolved
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue