mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
handle reversed transactions
This commit is contained in:
parent
5fd9df3beb
commit
5bd43478c7
@ -182,7 +182,7 @@ namespace Bit.Billing.Controllers
|
||||
// Catch foreign key violations because user/org could have been deleted.
|
||||
catch(SqlException e) when(e.Number == 547) { }
|
||||
}
|
||||
else if(ipnTransaction.PaymentStatus == "Refunded")
|
||||
else if(ipnTransaction.PaymentStatus == "Refunded" || ipnTransaction.PaymentStatus == "Reversed")
|
||||
{
|
||||
var refundTransaction = await _transactionRepository.GetByGatewayIdAsync(
|
||||
GatewayType.PayPal, ipnTransaction.TxnId);
|
||||
|
Loading…
x
Reference in New Issue
Block a user