mirror of
https://github.com/bitwarden/server.git
synced 2024-12-30 18:17:36 +01:00
refund if something screws up
This commit is contained in:
parent
9e14af3223
commit
7675478daa
@ -406,6 +406,8 @@ namespace Bit.Billing.Controllers
|
||||
return false;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
var invoiceService = new InvoiceService();
|
||||
await invoiceService.UpdateAsync(invoice.Id, new InvoiceUpdateOptions
|
||||
{
|
||||
@ -417,6 +419,13 @@ namespace Bit.Billing.Controllers
|
||||
}
|
||||
});
|
||||
await invoiceService.PayAsync(invoice.Id, new InvoicePayOptions { PaidOutOfBand = true });
|
||||
}
|
||||
catch(Exception e)
|
||||
{
|
||||
await _btGateway.Transaction.RefundAsync(transactionResult.Target.Id);
|
||||
throw e;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user