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

Guard against missing members in avatars

Part of https://github.com/vector-im/riot-web/issues/11744
This commit is contained in:
J. Ryan Stinnett
2020-01-13 12:29:03 +00:00
parent 9c686bf501
commit 77b479d50c
2 changed files with 12 additions and 9 deletions

View File

@@ -55,7 +55,7 @@ module.exports = createReactClass({
},
_getState: function(props) {
if (props.member) {
if (props.member && props.member.name) {
return {
name: props.member.name,
title: props.title || props.member.userId,