Skip to content

Commit

Permalink
Fix #350 (#351)
Browse files Browse the repository at this point in the history
Fixes #350
  • Loading branch information
ekurutepe committed Sep 22, 2020
1 parent 08d112e commit aa30fdd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Purchases/Public/RCPurchasesErrorUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ case CODE_IF_TARGET_IPHONE(SKErrorStoreProductNotAvailable, 5):
return RCPurchaseCancelledError;
case SKErrorIneligibleForOffer:
return RCPurchaseNotAllowedError;
#if TARGET_OS_IOS
#if TARGET_OS_MACCATALYST
// left intentionally blank
#elif TARGET_OS_IOS
case SKErrorOverlayInvalidConfiguration:
return RCPurchaseNotAllowedError;
case SKErrorOverlayTimeout:
Expand Down

0 comments on commit aa30fdd

Please sign in to comment.