Guard against missing members in avatars
Part of https://github.com/vector-im/riot-web/issues/11744
This commit is contained in:
committed by
David Baker
parent
a3fe5bbd8c
commit
8fc85797a7
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user