Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

Commit

Permalink
Fixed hostedContent to compile on older OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
MugunthKumar committed Sep 21, 2012
1 parent aa930f6 commit eba1291
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MKStoreManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ + (MKStoreManager*)sharedManager
dispatch_once(&oncePredicate, ^{
_sharedStoreManager = [[self alloc] init];
_sharedStoreManager.purchasableObjects = [NSMutableArray array];
#ifdef __IPHONE_6_0
_sharedStoreManager.hostedContents = [NSMutableArray array];
#endif
[_sharedStoreManager requestProductData];
[[SKPaymentQueue defaultQueue] addTransactionObserver:_sharedStoreManager];
[_sharedStoreManager startVerifyingSubscriptionReceipts];
Expand Down

0 comments on commit eba1291

Please sign in to comment.