Skip to content

Commit f839f50

Browse files
author
Jan Petr
authored
Merge pull request #962 from algolia/fix/empty_description
Fix empty description
2 parents b005694 + 6341919 commit f839f50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/community/Algolia/Algoliasearch/Helper/Entity/Producthelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ public function getObject(Mage_Catalog_Model_Product $product)
898898

899899
foreach ($additionalAttributes as $attribute) {
900900
$attribute_name = $attribute['attribute'];
901-
if (isset($customData[$attribute_name])) {
901+
if (array_key_exists($attribute_name, $customData)) {
902902
continue;
903903
}
904904

0 commit comments

Comments
 (0)