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

This commit is contained in:
Sayanth 2026-03-20 23:26:16 +05:30
parent 8f54a7c5a0
commit aeb017ba5c
No known key found for this signature in database
GPG key ID: 01CCC2301DF1F7E8

View file

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