Skip to content

Commit

Permalink
We don't want to filter out false values, only null values.
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean committed Nov 7, 2024
1 parent 92c3802 commit 03b6a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jobs/ImportItemJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function handle(): void

return [$fieldHandle => $value];
})
->filter()
->reject(fn ($value) => is_null($value))
->all();

match ($this->import->get('destination.type')) {
Expand Down

0 comments on commit 03b6a7b

Please sign in to comment.