mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-21 22:41:07 +02: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:
parent
89105aed6b
commit
7c5f74e18a
@ -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…
x
Reference in New Issue
Block a user