From e0f7d212c83bc585b254e7c0f7d12cf025858905 Mon Sep 17 00:00:00 2001 From: cyprain-okeke <108260115+cyprain-okeke@users.noreply.github.com> Date: Thu, 27 Jun 2024 11:08:46 +0100 Subject: [PATCH] Fix the Bug for org without subscription (#4213) Signed-off-by: Cy Okeke --- .../AdminConsole/Services/ProviderService.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/bitwarden_license/src/Commercial.Core/AdminConsole/Services/ProviderService.cs b/bitwarden_license/src/Commercial.Core/AdminConsole/Services/ProviderService.cs index f252f14346..380d404b21 100644 --- a/bitwarden_license/src/Commercial.Core/AdminConsole/Services/ProviderService.cs +++ b/bitwarden_license/src/Commercial.Core/AdminConsole/Services/ProviderService.cs @@ -436,11 +436,15 @@ public class ProviderService : IProviderService return; } - var subscriptionItem = await GetSubscriptionItemAsync(organization.GatewaySubscriptionId, GetStripeSeatPlanId(organization.PlanType)); - var extractedPlanType = PlanTypeMappings(organization); - if (subscriptionItem != null) + if (!string.IsNullOrWhiteSpace(organization.GatewaySubscriptionId)) { - await UpdateSubscriptionAsync(subscriptionItem, GetStripeSeatPlanId(extractedPlanType), organization); + var subscriptionItem = await GetSubscriptionItemAsync(organization.GatewaySubscriptionId, + GetStripeSeatPlanId(organization.PlanType)); + var extractedPlanType = PlanTypeMappings(organization); + if (subscriptionItem != null) + { + await UpdateSubscriptionAsync(subscriptionItem, GetStripeSeatPlanId(extractedPlanType), organization); + } } await _organizationRepository.UpsertAsync(organization);