1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00
This commit is contained in:
Matthew Hodgson
2017-02-07 22:00:56 +00:00
parent 96539a4054
commit 8fea4c27cb

View File

@@ -385,7 +385,7 @@ module.exports = React.createClass({
}
userEvents[userId].push({
mxEvent: e,
displayName: e.target.name || userId,
displayName: (e.target ? e.target.name : null) || userId,
index: index,
});
});