1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

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

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