--- /dev/null
+Exception\r
+=========\r
+\r
+ (1/1) #1256475113 InvalidArgumentException\r
+\r
+ The argument "image" was registered with type "object", but is of type "array" in view helper "TYPO3\CMS\Fluid\ViewHelpers\ImageViewHelper".\r
+\r
+Code::\r
+\r
+ {v:resource.record.fal(table:'pages', field: 'media', record: page) \r
+ -> v:iterator.first() \r
+ -> v:variable.set(name: 'image')} \r
+ <f:if condition="{image}">\r
+ <f:image image="{image}" />\r
+ </f:if>\r
+\r
+Solution\r
+========\r
+\r
+Use "asObjects=1" for v:resource.record.fal::\r
+\r
+ {v:resource.record.fal(table:'pages', field: 'media', record: page, asObjects: 1)}\r