Skip to content

Commit

Permalink
code-review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasSort committed Sep 8, 2023
1 parent 3128607 commit c780f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OrderProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ private void ProcessRow(Mapping mapping, ColumnMappingCollection columnMappings,
if (mapping != null && mapping.DestinationTable != null && mapping.DestinationTable.Name == "EcomOrders" && !string.IsNullOrEmpty(SourceColumnNameForDestinationOrderCustomerAccessUserId))
{
object accessUserId = DBNull.Value;
var OrderCustomerAccessUserExternalIdMapping = columnMappings.Find(cm => string.Compare(cm.DestinationColumn.Name, SourceColumnNameForDestinationOrderCustomerAccessUserId, true) == 0);
var OrderCustomerAccessUserExternalIdMapping = columnMappings.Find(cm => string.Compare(cm.DestinationColumn.Name, OrderCustomerAccessUserExternalId, true) == 0);
if (OrderCustomerAccessUserExternalIdMapping != null && OrderCustomerAccessUserExternalIdMapping.SourceColumn != null)
{
if (row.ContainsKey(OrderCustomerAccessUserExternalIdMapping.SourceColumn.Name))
Expand Down

0 comments on commit c780f99

Please sign in to comment.