diff --git a/app/components/post_attachment_opengraph/post_attachment_opengraph.js b/app/components/post_attachment_opengraph/post_attachment_opengraph.js index 2b99dcc3e..3a96929cc 100644 --- a/app/components/post_attachment_opengraph/post_attachment_opengraph.js +++ b/app/components/post_attachment_opengraph/post_attachment_opengraph.js @@ -217,7 +217,7 @@ export default class PostAttachmentOpenGraph extends PureComponent { const {isReplyPost, openGraphData, theme} = this.props; const {hasImage, height, imageUrl, width} = this.state; - if (!openGraphData || !openGraphData.description) { + if (!openGraphData || openGraphData.description == null) { return null; } @@ -248,15 +248,17 @@ export default class PostAttachmentOpenGraph extends PureComponent { - - - {openGraphData.description} - - + {openGraphData.description && + + + {openGraphData.description} + + + } {hasImage &&