Fix unencrypted video thumbnail

pull/21833/head
Mark Haines 2016-11-04 13:13:25 +00:00
parent b56417f46e
commit 48340a2817
1 changed files with 3 additions and 1 deletions

View File

@ -70,8 +70,10 @@ module.exports = React.createClass({
var content = this.props.mxEvent.getContent();
if (content.file !== undefined) {
return this.state.decryptedThumbnailUrl;
} else if (content.info.thumbnail_url) {
return MatrixClientPeg.get().mxcUrlToHttp(content.info.thumbnail_url);
} else {
return MatrixClientPeg.get().mxcUrlToHttp(content.url, 800, 600);
return null;
}
},