From c1e9157ae0551a086de8e250077d82181d7c6513 Mon Sep 17 00:00:00 2001 From: blmage Date: Wed, 26 Jun 2019 16:17:52 +0200 Subject: [PATCH] Fix regression --- .../community/Profileolabs/Shoppingflux/Model/Export/Flux.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/community/Profileolabs/Shoppingflux/Model/Export/Flux.php b/app/code/community/Profileolabs/Shoppingflux/Model/Export/Flux.php index f221271..3ef2f57 100644 --- a/app/code/community/Profileolabs/Shoppingflux/Model/Export/Flux.php +++ b/app/code/community/Profileolabs/Shoppingflux/Model/Export/Flux.php @@ -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); }