fix: check if fingerprint string is substring of any string references

This commit is contained in:
oSumAtrIX 2022-12-18 19:39:36 +01:00
parent c391ca648b
commit c5de9e2988
No known key found for this signature in database
GPG key ID: A9B3094ACDB604B4
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ abstract class MethodFingerprint(
if (instruction.opcode.ordinal != Opcode.CONST_STRING.ordinal) return@forEachIndexed
val string = ((instruction as ReferenceInstruction).reference as StringReference).string
val index = stringsList.indexOfFirst { it == string }
val index = stringsList.indexOfFirst(string::contains)
if (index == -1) return@forEachIndexed
add(