From bbdd0fdcdd47199c14614bb76cfe5e7eec251283 Mon Sep 17 00:00:00 2001 From: alfiecg24 Date: Sun, 10 Dec 2023 16:10:31 +0000 Subject: [PATCH] Fix if statement that broke app installations --- RootHelper/main.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RootHelper/main.m b/RootHelper/main.m index 59bc61d..4cbf698 100644 --- a/RootHelper/main.m +++ b/RootHelper/main.m @@ -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;