From 4af7780bb85b8f625cf06da1d430d09819a2adcf Mon Sep 17 00:00:00 2001 From: Alex Morask <144709477+amorask-bitwarden@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:23:33 -0400 Subject: [PATCH] Prevent Stripe call when creating org from reseller in admin (#3953) --- .../AdminConsole/Services/ProviderService.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/bitwarden_license/src/Commercial.Core/AdminConsole/Services/ProviderService.cs b/bitwarden_license/src/Commercial.Core/AdminConsole/Services/ProviderService.cs index bad44cb3c2..23e8cee4b3 100644 --- a/bitwarden_license/src/Commercial.Core/AdminConsole/Services/ProviderService.cs +++ b/bitwarden_license/src/Commercial.Core/AdminConsole/Services/ProviderService.cs @@ -382,10 +382,14 @@ public class ProviderService : IProviderService organization.BillingEmail = provider.BillingEmail; await _organizationRepository.ReplaceAsync(organization); - await _stripeAdapter.CustomerUpdateAsync(organization.GatewayCustomerId, new CustomerUpdateOptions + + if (!string.IsNullOrEmpty(organization.GatewayCustomerId)) { - Email = provider.BillingEmail - }); + await _stripeAdapter.CustomerUpdateAsync(organization.GatewayCustomerId, new CustomerUpdateOptions + { + Email = provider.BillingEmail + }); + } await _eventService.LogProviderOrganizationEventAsync(providerOrganization, EventType.ProviderOrganization_Added); }