From 1ab14d800bac3b9aff0d53525c6e7cdc4b6b0316 Mon Sep 17 00:00:00 2001 From: Conner Turnbull Date: Mon, 19 May 2025 14:37:23 -0400 Subject: [PATCH] Removed reference to UseOrganizationDomains given that it doesn't exist in this branch --- src/Core/Models/Business/OrganizationLicense.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Core/Models/Business/OrganizationLicense.cs b/src/Core/Models/Business/OrganizationLicense.cs index 4dea367dde..6b86bc1754 100644 --- a/src/Core/Models/Business/OrganizationLicense.cs +++ b/src/Core/Models/Business/OrganizationLicense.cs @@ -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}");