1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Merge branch 'travis/sourcemaps' into travis/babel7-wp-es6-fixes

This commit is contained in:
Travis Ralston
2020-01-08 14:42:01 -07:00
13 changed files with 42 additions and 21 deletions

View File

@@ -32,7 +32,7 @@ export function avatarUrlForMember(member, width, height, resizeMethod) {
// member can be null here currently since on invites, the JS SDK
// does not have enough info to build a RoomMember object for
// the inviter.
url = this.defaultAvatarUrlForString(member ? member.userId : '');
url = defaultAvatarUrlForString(member ? member.userId : '');
}
return url;
}