From ac42b6b6c09d1d00d85eaf363daf7c9b93c3c221 Mon Sep 17 00:00:00 2001 From: alfiecg24 Date: Fri, 22 Mar 2024 21:46:18 +0000 Subject: [PATCH] Don't print if there is no pre-applied exploit --- RootHelper/main.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RootHelper/main.m b/RootHelper/main.m index 91effe4..40aec30 100644 --- a/RootHelper/main.m +++ b/RootHelper/main.m @@ -542,7 +542,7 @@ int signApp(NSString* appPath) NSLog(@"[signApp] taking fast path for app which declares use of a supported pre-applied exploit (%@)", mainExecutablePath); return 0; } - else + else if (declaredPreAppliedExploitType != 0) { NSLog(@"[signApp] app (%@) declares use of a pre-applied exploit that is not supported on this device. Proceeding to re-sign...", mainExecutablePath); }