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

[PM-17064] 500 error on Free org Upgrade with Saved Payment Method (#5266)

(cherry picked from commit adab8e622a7b5a0cca583d54092854563691c2e5)
This commit is contained in:
Jonas Hendrickx 2025-01-15 16:05:38 +01:00 committed by Conner Turnbull
parent 1e419dde97
commit 0991b7f5a6
No known key found for this signature in database

View File

@ -2087,12 +2087,12 @@ public class StripePaymentService : IPaymentService
if (gatewayCustomer.Discount != null) if (gatewayCustomer.Discount != null)
{ {
options.Discounts.Add(new InvoiceDiscountOptions options.Discounts.Add(new InvoiceDiscountOptions { Discount = gatewayCustomer.Discount.Id });
{
Discount = gatewayCustomer.Discount.Id
});
} }
}
if (gatewaySubscriptionId != null)
{
var gatewaySubscription = await _stripeAdapter.SubscriptionGetAsync(gatewaySubscriptionId); var gatewaySubscription = await _stripeAdapter.SubscriptionGetAsync(gatewaySubscriptionId);
if (gatewaySubscription?.Discount != null) if (gatewaySubscription?.Discount != null)