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

handle reversed transactions

This commit is contained in:
Kyle Spearrin 2019-10-01 08:19:01 -04:00
parent 5fd9df3beb
commit 5bd43478c7

View File

@ -182,7 +182,7 @@ namespace Bit.Billing.Controllers
// Catch foreign key violations because user/org could have been deleted. // Catch foreign key violations because user/org could have been deleted.
catch(SqlException e) when(e.Number == 547) { } 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( var refundTransaction = await _transactionRepository.GetByGatewayIdAsync(
GatewayType.PayPal, ipnTransaction.TxnId); GatewayType.PayPal, ipnTransaction.TxnId);