Skip to content

Commit

Permalink
Fixes #104
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno authored Jan 10, 2018
1 parent db2f6ea commit ef0e5e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/PurchaseNonConsumable.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ public async Task<bool> PurchaseItem(string productId, string payload)
{
//did not purchase
}
else
else if(purchase.State == PurchaseState.Purchased)
{
//purchased!
}
}
catch (InAppBillingPurchaseException purchaseEx)
Expand All @@ -70,4 +71,4 @@ public async Task<bool> PurchaseItem(string productId, string payload)
Learn more about `IInAppBillingVerifyPurchase` in the [Securing Purchases](SecuringPurchases.md) documentation.


<= Back to [Table of Contents](README.md)
<= Back to [Table of Contents](README.md)

0 comments on commit ef0e5e8

Please sign in to comment.