Skip to content

Commit

Permalink
Merge pull request #51 from dynamicweb/dbe/20633-merge-to-10.5
Browse files Browse the repository at this point in the history
fix build
  • Loading branch information
DWDBE authored Aug 14, 2024
2 parents 23048d9 + ea85670 commit cb1deda
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/EcomProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -970,10 +970,8 @@ public override bool RunJob(Job job)
while (!reader.IsDone())
{
sourceRow = reader.GetNext();
if (ProcessInputRow(sourceRow, mapping))
{
Writer.Write(sourceRow, mapping, discardDuplicates);
}
ProcessInputRow(mapping, sourceRow);
Writer.Write(sourceRow, mapping, discardDuplicates);
}
Writer.ReportProgress(mapping);
}
Expand Down

0 comments on commit cb1deda

Please sign in to comment.