Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>10.8.3</Version>
<Version>10.8.4</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Title>Ecom Provider</Title>
<Description>Ecom Provider</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/EcomDestinationWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2692,7 +2692,7 @@ private bool AddGroupReferenceToProduct(string productID, string languageID, str
}
else
{
DataRow? groupRow = FindRow("EcomGroups", group, dataTable.Columns.Contains("GroupName") ? new Func<DataRow, bool>(g => g["GroupName"].ToString() == group) : null);
DataRow? groupRow = FindRow("EcomGroups", group, new Func<DataRow, bool>(g => g["GroupName"].ToString() == group));
if (groupRow != null)
{
AddGroupReferenceRowToProduct(productID, groupRow["GroupID"].ToString() ?? "", sorting, isPrimary);
Expand Down
Loading