Skip to content

Commit

Permalink
allow to override to false value
Browse files Browse the repository at this point in the history
  • Loading branch information
i-just committed Nov 17, 2023
1 parent 503df96 commit 6ef4a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/Feeds.php
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ private function _createModelFromRecord(FeedRecord $record = null)
foreach ($attributes as $attribute => $value) {
$override = $this->getModelOverrides($attribute, $record['id']);

if ($override) {
if ($override !== null) {
$attributes[$attribute] = $override;
}
}
Expand Down

0 comments on commit 6ef4a31

Please sign in to comment.