Merge pull request #870 from matrix-org/luke/fix-null-url-previews

Don't show null URL previews
This commit is contained in:
Luke Barnard 2017-05-08 15:23:18 +01:00 committed by GitHub
commit 598f5e20c6

View file

@ -100,7 +100,9 @@ module.exports = React.createClass({
render: function() {
var p = this.state.preview;
if (!p) return <div/>;
if (!p || Object.keys(p).length === 0) {
return <div/>;
}
// FIXME: do we want to factor out all image displaying between this and MImageBody - especially for lightboxing?
var image = p["og:image"];