Skip to content

Commit

Permalink
Add missing IntroEligibilityStatusNoIntroOfferExists (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
NachoSoto authored and aboedo committed Oct 5, 2023
1 parent 77b2dbb commit 66c62d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ private void Start()
case Purchases.IntroEligibilityStatus.IntroEligibilityStatusEligible:
case Purchases.IntroEligibilityStatus.IntroEligibilityStatusIneligible:
case Purchases.IntroEligibilityStatus.IntroEligibilityStatusUnknown:
case Purchases.IntroEligibilityStatus.IntroEligibilityStatusNoIntroOfferExists:
break;
}
}
Expand Down
5 changes: 4 additions & 1 deletion RevenueCat/Scripts/IntroEligibilityStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ public enum IntroEligibilityStatus
IntroEligibilityStatusIneligible = 1,

/// The user is eligible for a free trial or intro pricing for this product.
IntroEligibilityStatusEligible = 2
IntroEligibilityStatusEligible = 2,

// There is no free trial or intro pricing for this product.
IntroEligibilityStatusNoIntroOfferExists = 3
}
}

0 comments on commit 66c62d9

Please sign in to comment.