From 6ef4a314f206e4515fedf0f76c7b940e179d3cf7 Mon Sep 17 00:00:00 2001 From: Iwona Just Date: Fri, 17 Nov 2023 15:01:30 +0000 Subject: [PATCH] allow to override to `false` value --- src/services/Feeds.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/Feeds.php b/src/services/Feeds.php index ba229d80..cf8fea04 100644 --- a/src/services/Feeds.php +++ b/src/services/Feeds.php @@ -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; } }