Skip to content

Commit 3c5c7aa

Browse files
Merge branch 'hotfix/1.1.1' into main
2 parents ae2894c + 58cc9d0 commit 3c5c7aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Vendr.PaymentProviders.PayPal/PayPalCheckoutOneTimePaymentProvider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public override CallbackResult ProcessCallback(OrderReadOnly order, HttpRequestB
188188

189189
return CallbackResult.Ok(new TransactionInfo
190190
{
191-
AmountAuthorized = decimal.Parse(payPalPayment?.Amount.Value ?? "0.00"),
191+
AmountAuthorized = decimal.Parse(payPalPayment?.Amount.Value ?? "0.00", CultureInfo.InvariantCulture),
192192
TransactionId = payPalPayment?.Id ?? order.TransactionInfo.TransactionId ?? "",
193193
PaymentStatus = payPalOrder != null
194194
? GetPaymentStatus(payPalOrder)

0 commit comments

Comments
 (0)