mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-11-27 22:38:10 +09:00
Exclude remote user or myself from talk user suggestions (#3449)
This commit is contained in:
parent
3d1afb9306
commit
8f699a4757
@ -115,9 +115,10 @@ export default Vue.extend({
|
||||
}
|
||||
this.$root.api('users/search', {
|
||||
query: this.q,
|
||||
localOnly: true,
|
||||
limit: 10
|
||||
}).then(users => {
|
||||
this.result = users;
|
||||
this.result = users.filter(user => user.id != this.$store.state.i.id);
|
||||
});
|
||||
},
|
||||
navigate(user) {
|
||||
|
Loading…
Reference in New Issue
Block a user