Fix if statement that broke app installations

This commit is contained in:
alfiecg24 2023-12-10 16:10:31 +00:00
parent 16d4771621
commit bbdd0fdcdd
1 changed files with 1 additions and 1 deletions

View File

@ -666,7 +666,7 @@ int signApp(NSString* appPath)
if (r == 0) {
NSLog(@"[%@] Applied CoreTrust bypass!", filePath);
}
if (r == 2) {
else if (r == 2) {
NSLog(@"[%@] Cannot apply CoreTrust bypass on an encrypted binary!", filePath);
fat_free(fat);
return 180;