fix(backend): チャンネルのピン留めされたノートの順番が正しくない問題を修正

Fix #10541
This commit is contained in:
syuilo 2023-04-13 08:52:30 +09:00
parent 6839441ac6
commit dcbaca4260
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@
- カスタム絵文字でリアクションできないことがある問題を修正
### Client
-
- チャンネルのピン留めされたノートの順番が正しくない問題を修正
### Server
- フォローインポートなどでの大量のフォロー等操作をキューイングするように #10544 @nmkj-io

View file

@ -84,7 +84,7 @@ export class ChannelEntityService {
} : {}),
...(detailed ? {
pinnedNotes: await this.noteEntityService.packMany(pinnedNotes, me),
pinnedNotes: (await this.noteEntityService.packMany(pinnedNotes, me)).sort((a, b) => channel.pinnedNoteIds.indexOf(a.id) - channel.pinnedNoteIds.indexOf(b.id)),
} : {}),
};
}