1
0
mirror of https://github.com/bitwarden/server synced 2025-12-10 05:13:48 +00:00

Run dotnet format

This commit is contained in:
Alex Morask
2025-12-05 10:54:55 -06:00
parent bd17067838
commit a666ceb62f

View File

@@ -462,16 +462,16 @@ public class StripeEventUtilityService : IStripeEventUtilityService
switch (cashBalanceTransaction)
{
case { Type: "funded", Funded: not null }:
{
bankTransferType = cashBalanceTransaction.Funded.BankTransfer.Type;
break;
}
{
bankTransferType = cashBalanceTransaction.Funded.BankTransfer.Type;
break;
}
case { Type: "applied_to_payment", AppliedToPayment: not null }
when cashBalanceTransaction.AppliedToPayment.PaymentIntentId == charge.PaymentIntentId:
{
matchingPaymentIntentFound = true;
break;
}
{
matchingPaymentIntentFound = true;
break;
}
}
if (matchingPaymentIntentFound && !string.IsNullOrEmpty(bankTransferType))