Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
blmage committed Jun 26, 2019
1 parent 8b37a0c commit c1e9157
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ protected function _getConfigurableAttributes(array $data, $product, $storeId)

$images = $this->getImages($images, $usedProduct, $storeId, false);

if (!$images['image-url-1']) {
if (!isset($images['image-url-1']) || !$images['image-url-1']) {
$images = $this->getImages($images, $product, $storeId);
}

Expand Down

0 comments on commit c1e9157

Please sign in to comment.