mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
Exclude remote user or myself from talk user suggestions (#3449)
This commit is contained in:
parent
f2b1cf92e1
commit
6a8835b923
@ -115,9 +115,10 @@ export default Vue.extend({
|
|||||||
}
|
}
|
||||||
this.$root.api('users/search', {
|
this.$root.api('users/search', {
|
||||||
query: this.q,
|
query: this.q,
|
||||||
|
localOnly: true,
|
||||||
limit: 10
|
limit: 10
|
||||||
}).then(users => {
|
}).then(users => {
|
||||||
this.result = users;
|
this.result = users.filter(user => user.id != this.$store.state.i.id);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
navigate(user) {
|
navigate(user) {
|
||||||
|
Loading…
Reference in New Issue
Block a user