Fix empty lightbox when there is no avatarUrl

Signed-off-by: Aaron Raimist <aaron@raim.ist>
pull/21833/head
Aaron Raimist 2018-11-28 14:42:30 -06:00
parent 0cce912cf6
commit 53947bee35
No known key found for this signature in database
GPG Key ID: 37419210002890EF
1 changed files with 5 additions and 0 deletions

View File

@ -137,6 +137,11 @@ module.exports = React.createClass({
const avatarUrl = this.props.room.getAvatarUrl(
MatrixClientPeg.get().getHomeserverUrl(),
null, null, null, false);
if (!avatarUrl) {
return;
}
const ImageView = sdk.getComponent("elements.ImageView");
const params = {
src: avatarUrl,