diff --git a/src/Dynamicweb.DataIntegration.Providers.EcomProvider.csproj b/src/Dynamicweb.DataIntegration.Providers.EcomProvider.csproj index bda430d..fedc1b9 100644 --- a/src/Dynamicweb.DataIntegration.Providers.EcomProvider.csproj +++ b/src/Dynamicweb.DataIntegration.Providers.EcomProvider.csproj @@ -1,6 +1,6 @@  - 10.8.3 + 10.8.4 1.0.0.0 Ecom Provider Ecom Provider diff --git a/src/EcomDestinationWriter.cs b/src/EcomDestinationWriter.cs index 72f4b38..7a2bfc6 100644 --- a/src/EcomDestinationWriter.cs +++ b/src/EcomDestinationWriter.cs @@ -2692,7 +2692,7 @@ private bool AddGroupReferenceToProduct(string productID, string languageID, str } else { - DataRow? groupRow = FindRow("EcomGroups", group, dataTable.Columns.Contains("GroupName") ? new Func(g => g["GroupName"].ToString() == group) : null); + DataRow? groupRow = FindRow("EcomGroups", group, new Func(g => g["GroupName"].ToString() == group)); if (groupRow != null) { AddGroupReferenceRowToProduct(productID, groupRow["GroupID"].ToString() ?? "", sorting, isPrimary);