diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-06 18:28:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-06 18:28:27 +0900 |
| commit | 5f208a7d99cf985e9c613e2d65656ae4d46aa68a (patch) | |
| tree | 0c74b4e4c8214454eae9b8da9303d3909def3676 /src/client/app | |
| parent | 非公開の投稿に自分以外が返信したりRenoteしたりできな... (diff) | |
| download | misskey-5f208a7d99cf985e9c613e2d65656ae4d46aa68a.tar.gz misskey-5f208a7d99cf985e9c613e2d65656ae4d46aa68a.tar.bz2 misskey-5f208a7d99cf985e9c613e2d65656ae4d46aa68a.zip | |
ユーザー検索APIを統合
Diffstat (limited to 'src/client/app')
| -rw-r--r-- | src/client/app/common/views/components/autocomplete.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/autocomplete.vue b/src/client/app/common/views/components/autocomplete.vue index cd6066877c..b274eaa0a0 100644 --- a/src/client/app/common/views/components/autocomplete.vue +++ b/src/client/app/common/views/components/autocomplete.vue @@ -132,7 +132,7 @@ export default Vue.extend({ this.users = users; this.fetching = false; } else { - (this as any).api('users/search_by_username', { + (this as any).api('users/search', { query: this.q, limit: 30 }).then(users => { |