diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs index aa3a1537a9..3bad0c213e 100644 --- a/src/Core/Services/Implementations/OrganizationService.cs +++ b/src/Core/Services/Implementations/OrganizationService.cs @@ -765,7 +765,7 @@ namespace Bit.Core.Services { if(!string.IsNullOrWhiteSpace(organization.GatewaySubscriptionId)) { - await _stripePaymentService.CancelSubscriptionAsync(organization, false); + await _stripePaymentService.CancelSubscriptionAsync(organization, true); } await _organizationRepository.DeleteAsync(organization); diff --git a/src/Core/Services/Implementations/UserService.cs b/src/Core/Services/Implementations/UserService.cs index b446048e4f..dc348df31b 100644 --- a/src/Core/Services/Implementations/UserService.cs +++ b/src/Core/Services/Implementations/UserService.cs @@ -174,7 +174,7 @@ namespace Bit.Core.Services if(!string.IsNullOrWhiteSpace(user.GatewaySubscriptionId)) { var paymentService = user.GetPaymentService(_globalSettings); - await paymentService.CancelSubscriptionAsync(user, false); + await paymentService.CancelSubscriptionAsync(user, true); } await _userRepository.DeleteAsync(user);