Fix GroupMemberList search for users without displayname
When there is a user in a group which has no displayname set the search failed with "Cannot read property 'toLowerCase' of null"
This commit is contained in:
parent
89105aed6b
commit
7c5f74e18a
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ export default withMatrixClient(React.createClass({
|
|||
query = (query || "").toLowerCase();
|
||||
if (query) {
|
||||
memberList = memberList.filter((m) => {
|
||||
const matchesName = m.displayname.toLowerCase().indexOf(query) !== -1;
|
||||
const matchesName = (m.displayname || "").toLowerCase().includes(query);
|
||||
const matchesId = m.userId.toLowerCase().includes(query);
|
||||
|
||||
if (!matchesName && !matchesId) {
|
||||
|
|
Loading…
Reference in a new issue