mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Don't show current user in queryList
This commit is contained in:
parent
d3a709f98e
commit
75c9f707e0
1 changed files with 6 additions and 1 deletions
|
@ -265,11 +265,16 @@ module.exports = React.createClass({
|
|||
var uid = user.userId.toLowerCase();
|
||||
query = query.toLowerCase();
|
||||
|
||||
// dount match any that are already on the invite list
|
||||
// don't match any that are already on the invite list
|
||||
if (this._isOnInviteList(uid)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// ignore current user
|
||||
if (uid === MatrixClientPeg.get().credentials.userId) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// direct prefix matches
|
||||
if (name.indexOf(query) === 0 || uid.indexOf(query) === 0) {
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue