mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:23:08 +02:00
さがすのローカルユーザー(ピンどめ)が無限に生成される問題を修正
This commit is contained in:
parent
9ae2e87a46
commit
004ace396d
2 changed files with 2 additions and 1 deletions
|
@ -22,6 +22,7 @@
|
||||||
- リスト管理の画面でリストが無限に読み込まれる問題を修正
|
- リスト管理の画面でリストが無限に読み込まれる問題を修正
|
||||||
- 自分のクリップが無限に読み込まれる問題を修正
|
- 自分のクリップが無限に読み込まれる問題を修正
|
||||||
- チャンネルのお気に入りが無限に読み込まれる問題を修正
|
- チャンネルのお気に入りが無限に読み込まれる問題を修正
|
||||||
|
- さがすのローカルユーザー(ピンどめ)が無限に生成される問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- 通知読み込みでエラーが発生する場合がある問題を修正
|
- 通知読み込みでエラーが発生する場合がある問題を修正
|
||||||
|
|
|
@ -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: {
|
const popularUsers = { endpoint: 'users', limit: 10, noPaging: true, params: {
|
||||||
state: 'alive',
|
state: 'alive',
|
||||||
origin: 'local',
|
origin: 'local',
|
||||||
|
|
Loading…
Reference in a new issue