mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
Merge pull request #870 from matrix-org/luke/fix-null-url-previews
Don't show null URL previews
This commit is contained in:
commit
598f5e20c6
@ -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"];
|
||||
|
Loading…
Reference in New Issue
Block a user