avoid downloading avatars at full resolution

pull/21833/head
Bruno Windels 2018-10-25 15:20:33 +02:00
parent e4dfb90b85
commit 030deba90c
1 changed files with 1 additions and 1 deletions

View File

@ -931,7 +931,7 @@ module.exports = withMatrixClient(React.createClass({
const avatarUrl = this.props.member.getMxcAvatarUrl();
let avatarElement;
if (avatarUrl) {
const httpUrl = this.props.matrixClient.mxcUrlToHttp(avatarUrl);
const httpUrl = this.props.matrixClient.mxcUrlToHttp(avatarUrl, 800, 800);
avatarElement = <div className="mx_MemberInfo_avatar">
<img src={httpUrl} />
</div>