Skip to content

Commit

Permalink
Fix for date on transaction date on ios #89
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed Jan 6, 2018
1 parent 0bcb7df commit db2f6ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin.InAppBilling.iOS/InAppBillingImplementation.cs
Expand Up @@ -456,7 +456,7 @@ public static InAppBillingPurchase ToIABPurchase(this SKPaymentTransaction trans

return new InAppBillingPurchase
{
TransactionDateUtc = NSDateToDateTimeUtc(p.TransactionDate),
TransactionDateUtc = NSDateToDateTimeUtc(transaction.TransactionDate),
Id = p.TransactionIdentifier,
ProductId = p.Payment?.ProductIdentifier ?? string.Empty,
State = p.GetPurchaseState()
Expand Down

0 comments on commit db2f6ea

Please sign in to comment.