Skip to content

Commit

Permalink
Merge pull request #403 from Cheesebaron/patch-1
Browse files Browse the repository at this point in the history
Fixes #402 null ref awaiting ConsumePurchaseAsync
  • Loading branch information
jamesmontemagno committed Aug 11, 2021
2 parents af4f096 + a191b9e commit eb62c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin.InAppBilling/InAppBilling.apple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ async Task<SKPaymentTransaction> PurchaseAsync(string productId)
/// <returns>If consumed successful</returns>
/// <exception cref="InAppBillingPurchaseException">If an error occures during processing</exception>
public override Task<bool> ConsumePurchaseAsync(string productId, string purchaseToken) =>
null;
Task.FromResult(true);



Expand Down

0 comments on commit eb62c55

Please sign in to comment.