diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index c257655120..78f8b91284 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -1081,14 +1081,14 @@ public class StripePaymentService : IPaymentService true); public async Task HasSecretsManagerStandalone(Organization organization) => - await HasSecretsManagerAsync(gatewayCustomerId: organization.GatewayCustomerId, + await HasSecretsManagerStandaloneAsync(gatewayCustomerId: organization.GatewayCustomerId, organizationHasSecretsManager: organization.UseSecretsManager); public async Task HasSecretsManagerStandalone(InviteOrganization organization) => - await HasSecretsManagerAsync(gatewayCustomerId: organization.GatewayCustomerId, + await HasSecretsManagerStandaloneAsync(gatewayCustomerId: organization.GatewayCustomerId, organizationHasSecretsManager: organization.UseSecretsManager); - private async Task HasSecretsManagerAsync(string gatewayCustomerId, bool organizationHasSecretsManager) + private async Task HasSecretsManagerStandaloneAsync(string gatewayCustomerId, bool organizationHasSecretsManager) { if (string.IsNullOrEmpty(gatewayCustomerId)) {