Check for existence of content.size. Fixes #201.

pull/446/merge
David Baker 2015-10-09 16:28:51 +01:00
parent 61f951a33e
commit 023034ce4f
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ module.exports = React.createClass({
<div className="mx_MImageTile_download">
<a href={cli.mxcUrlToHttp(content.url)} target="_blank">
<img src="img/download.png" width="10" height="12"/>
Download {content.body} ({ filesize(content.info.size) })
Download {content.body} ({ content.info && content.info.size ? filesize(content.info.size) : "Unknwon size" })
</a>
</div>
</span>