Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdecock committed Dec 10, 2024
1 parent 2d4aa65 commit 8d93efe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal static void ResourceIndicatorUsed(this LicenseUsageTracker tracker, str

internal static void ResourceIndicatorsUsed(this LicenseUsageTracker tracker, IEnumerable<string> resourceIndicators)
{
if (resourceIndicators.Any())
if (resourceIndicators?.Any() == true)
{
tracker.FeatureUsed(LicenseFeature.ResourceIsolation);
}
Expand Down

0 comments on commit 8d93efe

Please sign in to comment.