1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Fix empty lightbox when there is no avatarUrl

Signed-off-by: Aaron Raimist <aaron@raim.ist>
This commit is contained in:
Aaron Raimist
2018-11-28 14:42:30 -06:00
parent 0cce912cf6
commit 53947bee35

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,