diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2015-09-24 00:38:37 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2015-09-24 00:38:37 -0700 |
commit | 23d491b47683752e2a3369fb9e51c50563982c04 (patch) | |
tree | e8623f7e7640637af6091bcb811f400aa329c4b3 /MobileCydia.mm | |
parent | 06325acfa9b258fd7ab170880a4050fe8c4394b6 (diff) |
Support listing installed applications on old iOS.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 1abd58b..20d686a 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4598,7 +4598,7 @@ static _H<NSMutableSet> Diversions_; } - (NSArray *) getDisplayIdentifiers { - NSSet *set([SBSCopyDisplayIdentifiers() autorelease]); + NSSet *set([SBSCopyApplicationDisplayIdentifiers() autorelease]); if (set == nil || ![set isKindOfClass:[NSSet class]]) return [NSArray array]; return [set allObjects]; |