1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 07:43:54 +00:00

Fix UseKeyConnector is set to true when upgrading to Enterprise (#6281)

This commit is contained in:
cyprain-okeke
2025-09-09 20:33:22 +05:30
committed by GitHub
parent d0778a8a7b
commit ac718351a8
2 changed files with 2 additions and 2 deletions

View File

@@ -265,7 +265,7 @@ public class UpgradeOrganizationPlanCommand : IUpgradeOrganizationPlanCommand
organization.UseApi = newPlan.HasApi;
organization.UseSso = newPlan.HasSso;
organization.UseOrganizationDomains = newPlan.HasOrganizationDomains;
organization.UseKeyConnector = newPlan.HasKeyConnector;
organization.UseKeyConnector = newPlan.HasKeyConnector ? organization.UseKeyConnector : false;
organization.UseScim = newPlan.HasScim;
organization.UseResetPassword = newPlan.HasResetPassword;
organization.SelfHost = newPlan.HasSelfHost;