1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

[AC-2416] Resolved Stripe refunds not creating a transaction (#3962)

* Resolved NullReferenceException when refunding a charge

* Downgraded log message for PayPal to warning
This commit is contained in:
Conner Turnbull 2024-04-08 09:40:43 -04:00 committed by GitHub
parent 5bd2c424aa
commit 03e65f6d1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ public class PayPalController : Controller
if (string.IsNullOrEmpty(transactionModel.TransactionId))
{
_logger.LogError("PayPal IPN: Transaction ID is missing");
_logger.LogWarning("PayPal IPN: Transaction ID is missing");
return Ok();
}

View File

@ -453,7 +453,7 @@ public class StripeController : Controller
}
else if (parsedEvent.Type.Equals(HandledStripeWebhook.ChargeRefunded))
{
var charge = await _stripeEventService.GetCharge(parsedEvent);
var charge = await _stripeEventService.GetCharge(parsedEvent, true, ["refunds"]);
var chargeTransaction = await _transactionRepository.GetByGatewayIdAsync(
GatewayType.Stripe, charge.Id);
if (chargeTransaction == null)