Closed jhrr closed 5 years ago
Currently if an image file is not found in media on page load then the whole CMS is brought to a halt with SourceImageIOError here rather than rendering a missing image stub.
media
SourceImageIOError
I think the fix might be as easy as switching out get_rendition with get_rendition_or_not_found?
get_rendition
get_rendition_or_not_found
Fixed by #53
Currently if an image file is not found in
media
on page load then the whole CMS is brought to a halt withSourceImageIOError
here rather than rendering a missing image stub.I think the fix might be as easy as switching out
get_rendition
withget_rendition_or_not_found
?