diff --git a/src/Core/Models/Business/SubscriptionCreateOptions.cs b/src/Core/Models/Business/SubscriptionCreateOptions.cs index bcd95c8c25..2cc01fb689 100644 --- a/src/Core/Models/Business/SubscriptionCreateOptions.cs +++ b/src/Core/Models/Business/SubscriptionCreateOptions.cs @@ -62,7 +62,7 @@ namespace Bit.Core.Models.Business protected void AddTaxRateItem(List taxRates) => AddTaxRateItem(taxRates?.Select(t => t.Id).ToList()); protected void AddTaxRateItem(List taxRateIds) { - if (taxRateIds != null && taxRateIds.Any()) + if (taxRateIds != null && taxRateIds.Any(tax => !string.IsNullOrWhiteSpace(tax))) { DefaultTaxRates = taxRateIds; }