diff --git a/src/Dynamicweb.DataIntegration.Providers.ExcelProvider.csproj b/src/Dynamicweb.DataIntegration.Providers.ExcelProvider.csproj index f33b594..f240fd7 100644 --- a/src/Dynamicweb.DataIntegration.Providers.ExcelProvider.csproj +++ b/src/Dynamicweb.DataIntegration.Providers.ExcelProvider.csproj @@ -1,6 +1,6 @@  - 10.4.1 + 10.6.0 1.0.0 Excel Provider Excel Provider @@ -23,8 +23,8 @@ snupkg - - + + diff --git a/src/ExcelProvider.cs b/src/ExcelProvider.cs index 50ff817..180e98f 100644 --- a/src/ExcelProvider.cs +++ b/src/ExcelProvider.cs @@ -223,8 +223,10 @@ public override bool RunJob(Job job) while (!sourceReader.IsDone()) { sourceRow = sourceReader.GetNext(); - ProcessInputRow(mapping, sourceRow); - destinationWriter.Write(sourceRow); + if (ProcessInputRow(sourceRow, mapping)) + { + destinationWriter.Write(sourceRow); + } } destinationWriter.AddTableToSet(); }