fix(Instagram - Disable signature check): Set correct return type (#6918)

This commit is contained in:
Sayanth 2026-03-23 02:30:07 +05:30 committed by GitHub
parent 49ee19ac7d
commit 4a36d1ab56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,6 +14,6 @@ val disableSignatureCheckPatch = bytecodePatch(
compatibleWith("com.instagram.android")
apply {
isValidSignatureMethodMethod.immutableClassDef.getIsValidSignatureClassMethod().returnEarly(true)
isValidSignatureMethodMethod.immutableClassDef.getIsValidSignatureClassMethod().returnEarly()
}
}