mirror of https://github.com/opa334/TrollStore.git
1.3.2
This commit is contained in:
parent
6af771a251
commit
5e75501959
|
@ -859,7 +859,7 @@ extern UIImage* imageWithSize(UIImage* image, CGSize size);
|
||||||
}
|
}
|
||||||
}];
|
}];
|
||||||
|
|
||||||
__block NSMutableSet* accessibleContainers = [NSMutableSet new];
|
__block NSMutableArray* accessibleContainers = [NSMutableArray new]; //array by design, should be ordered
|
||||||
if(!unrestrictedContainerAccess)
|
if(!unrestrictedContainerAccess)
|
||||||
{
|
{
|
||||||
[self enumerateAllInfoDictionaries:^(NSString *key, NSObject *value, BOOL *stop) {
|
[self enumerateAllInfoDictionaries:^(NSString *key, NSObject *value, BOOL *stop) {
|
||||||
|
@ -914,7 +914,7 @@ extern UIImage* imageWithSize(UIImage* image, CGSize size);
|
||||||
{
|
{
|
||||||
unrestrictedKeychainAccess = YES;
|
unrestrictedKeychainAccess = YES;
|
||||||
}
|
}
|
||||||
else if(![accessibleKeychainGroups containsObject:keychainID])
|
else
|
||||||
{
|
{
|
||||||
[accessibleKeychainGroups addObject:keychainID];
|
[accessibleKeychainGroups addObject:keychainID];
|
||||||
}
|
}
|
||||||
|
@ -940,10 +940,7 @@ extern UIImage* imageWithSize(UIImage* image, CGSize size);
|
||||||
{
|
{
|
||||||
for(NSString* URLScheme in cURLSchemes)
|
for(NSString* URLScheme in cURLSchemes)
|
||||||
{
|
{
|
||||||
if(![URLSchemes containsObject:URLScheme])
|
[URLSchemes addObject:URLScheme];
|
||||||
{
|
|
||||||
[URLSchemes addObject:URLScheme];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,11 @@
|
||||||
<array>
|
<array>
|
||||||
<string>/</string>
|
<string>/</string>
|
||||||
</array>
|
</array>
|
||||||
|
<key>com.apple.security.exception.iokit-user-client-class</key>
|
||||||
|
<array>
|
||||||
|
<string>AGXDeviceUserClient</string>
|
||||||
|
<string>IOSurfaceRootUserClient</string>
|
||||||
|
</array>
|
||||||
<key>com.apple.private.security.no-sandbox</key>
|
<key>com.apple.private.security.no-sandbox</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.private.persona-mgmt</key>
|
<key>com.apple.private.persona-mgmt</key>
|
||||||
|
|
Loading…
Reference in New Issue