take into account lazy loading when enlarging avatar

This commit is contained in:
Bruno Windels
2018-07-25 16:10:49 +02:00
parent af77f0206a
commit 8c9ceca14f
+1 -1
View File
@@ -598,7 +598,7 @@ module.exports = withMatrixClient(React.createClass({
onMemberAvatarClick: function() {
const member = this.props.member;
const avatarUrl = member.user ? member.user.avatarUrl : member.events.member.getContent().avatar_url;
const avatarUrl = member.getMxcAvatarUrl();
if (!avatarUrl) return;
const httpUrl = this.props.matrixClient.mxcUrlToHttp(avatarUrl);