From ff1b85505dfc5901639cd4224ca16a4967a7b7c2 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 22 Dec 2017 23:01:56 -0500 Subject: [PATCH] subscriptions are always canceled at end of period --- src/Core/Services/Implementations/OrganizationService.cs | 2 +- src/Core/Services/Implementations/UserService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);