Merge remote-tracking branch 'origin/develop' into develop

pull/21833/head
Weblate 2017-11-20 16:05:44 +00:00
commit 9191618a11
1 changed files with 1 additions and 1 deletions

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