1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-25 05:21:03 -05:00

Removed reference to UseOrganizationDomains given that it doesn't exist in this branch

This commit is contained in:
Conner Turnbull 2025-05-19 14:37:23 -04:00
parent baee505d0d
commit 1ab14d800b
No known key found for this signature in database

View File

@ -253,8 +253,7 @@ public class OrganizationLicense : ILicense
) &&
// any new fields added need to be added here so that they're ignored
!p.Name.Equals(nameof(UseRiskInsights)) &&
!p.Name.Equals(nameof(UseAdminSponsoredFamilies)) &&
!p.Name.Equals(nameof(UseOrganizationDomains)))
!p.Name.Equals(nameof(UseAdminSponsoredFamilies)))
.OrderBy(p => p.Name)
.Select(p => $"{p.Name}:{Utilities.CoreHelpers.FormatLicenseSignatureValue(p.GetValue(this, null))}")
.Aggregate((c, n) => $"{c}|{n}");