From 654383e233f553113e38d66ed38a1d8fc3b36436 Mon Sep 17 00:00:00 2001
From: wodby <wodby@example.com>
Date: Mon, 29 Nov 2021 15:29:21 +0000
Subject: [PATCH] ISTWCMS-5204: fixing getting images in service

---
 src/Service/UwNodeFieldValue.php | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/Service/UwNodeFieldValue.php b/src/Service/UwNodeFieldValue.php
index 8a03b256..8ba29e7e 100644
--- a/src/Service/UwNodeFieldValue.php
+++ b/src/Service/UwNodeFieldValue.php
@@ -356,7 +356,7 @@ class UwNodeFieldValue {
     }
 
     // If there is a type for the image, add it to the array.
-    if (isset($extra_options['type'])) {
+    if (!empty($image) && isset($extra_options['type'])) {
       $image['type'] = $extra_options['type'];
     }
 
@@ -640,6 +640,7 @@ class UwNodeFieldValue {
     $return_sources = [];
 
     if ($node->$field_name) {
+
       // Get the image entity.
       $image = $node->$field_name->entity;
 
@@ -648,7 +649,7 @@ class UwNodeFieldValue {
         $sources = $this->uwService->prepareResponsiveImage($image, 'uw_ris_media');
       }
       else {
-        $sources = NULL;
+        return [];
       }
 
       if (isset($sources['responsive_sources'])) {
-- 
GitLab