Skip to content

Commit

Permalink
さがすのローカルユーザー(ピンどめ)が無限に生成される問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Apr 8, 2023
1 parent 9ae2e87 commit 004ace3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- リスト管理の画面でリストが無限に読み込まれる問題を修正
- 自分のクリップが無限に読み込まれる問題を修正
- チャンネルのお気に入りが無限に読み込まれる問題を修正
- さがすのローカルユーザー(ピンどめ)が無限に生成される問題を修正

### Server
- 通知読み込みでエラーが発生する場合がある問題を修正
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/explore.users.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const tagUsers = $computed(() => ({
},
}));
const pinnedUsers = { endpoint: 'pinned-users' };
const pinnedUsers = { endpoint: 'pinned-users', noPaging: true };
const popularUsers = { endpoint: 'users', limit: 10, noPaging: true, params: {
state: 'alive',
origin: 'local',
Expand Down

0 comments on commit 004ace3

Please sign in to comment.