Fix typo in custom trust entitlement

This commit is contained in:
opa334 2026-04-01 11:30:51 +02:00
parent d11c04666a
commit 21af070154
No known key found for this signature in database
GPG Key ID: 31EAAEB7B41DE74F

View File

@ -695,7 +695,7 @@ int signApp(NSString* appPath)
#else #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 // 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) // 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 #endif
int r = signAdhoc(bundleMainExecutablePath, entitlementsToUse); int r = signAdhoc(bundleMainExecutablePath, entitlementsToUse);