diff --git a/js/FeedzyBlock/Editor.js b/js/FeedzyBlock/Editor.js index 91a6022f..ff0b1cac 100644 --- a/js/FeedzyBlock/Editor.js +++ b/js/FeedzyBlock/Editor.js @@ -225,7 +225,7 @@ class Editor extends Component { getImageURL(item, background) { let url; - if (item.thumbnail) { + if (item.thumbnail && this.props.attributes.thumb === 'auto') { url = item.thumbnail; } else if (this.props.attributes.default) { url = this.props.attributes.default.url;