From 21af0701546fc2d61b5fe41986a19cad2058a44f Mon Sep 17 00:00:00 2001 From: opa334 Date: Wed, 1 Apr 2026 11:30:51 +0200 Subject: [PATCH] Fix typo in custom trust entitlement --- RootHelper/main.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RootHelper/main.m b/RootHelper/main.m index 9160b78..d06d27a 100644 --- a/RootHelper/main.m +++ b/RootHelper/main.m @@ -695,7 +695,7 @@ int signApp(NSString* appPath) #else // Since TrollStore Lite adhoc signs stuff, this means that on PMAP_CS devices, it will run with "PMAP_CS_IN_LOADED_TRUST_CACHE" trust level // We need to overwrite it so that the app runs as expected (Dopamine 2.1.5+ feature) - entitlementsToUse[@"jb.pmap_cs_custom_trust"] = @"PMAP_CS_APP_STORE"; + entitlementsToUse[@"jb.pmap_cs.custom_trust"] = @"PMAP_CS_APP_STORE"; #endif int r = signAdhoc(bundleMainExecutablePath, entitlementsToUse);