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:
krombel 2017-11-20 17:02:20 +01:00 committed by GitHub
parent 89105aed6b
commit 7c5f74e18a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {