fix(server): チャンネルでミュートが正しく機能していないのを修正 (#10166)
* fix(server): チャンネルでミュートが正しく機能していないのを修正 * Update CHANGELOG.md
This commit is contained in:
parent
8a561bdb78
commit
53987fadd7
2 changed files with 7 additions and 0 deletions
|
@ -23,6 +23,7 @@ You should also include the user name that made the change.
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
- 外部メディアプロキシ使用時にアバタークロップができない問題を修正
|
- 外部メディアプロキシ使用時にアバタークロップができない問題を修正
|
||||||
- fix(server): メールアドレス更新時にバリデーションが正しく行われていないのを修正
|
- fix(server): メールアドレス更新時にバリデーションが正しく行われていないのを修正
|
||||||
|
- fix(server): チャンネルでミュートが正しく機能していないのを修正
|
||||||
|
|
||||||
## 13.8.1 (2023/02/26)
|
## 13.8.1 (2023/02/26)
|
||||||
|
|
||||||
|
|
|
@ -82,6 +82,12 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||||
.leftJoinAndSelect('renoteUser.avatar', 'renoteUserAvatar')
|
.leftJoinAndSelect('renoteUser.avatar', 'renoteUserAvatar')
|
||||||
.leftJoinAndSelect('renoteUser.banner', 'renoteUserBanner')
|
.leftJoinAndSelect('renoteUser.banner', 'renoteUserBanner')
|
||||||
.leftJoinAndSelect('note.channel', 'channel');
|
.leftJoinAndSelect('note.channel', 'channel');
|
||||||
|
|
||||||
|
if (me) {
|
||||||
|
this.queryService.generateMutedUserQuery(query, me);
|
||||||
|
this.queryService.generateMutedNoteQuery(query, me);
|
||||||
|
this.queryService.generateBlockedUserQuery(query, me);
|
||||||
|
}
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
const timeline = await query.take(ps.limit).getMany();
|
const timeline = await query.take(ps.limit).getMany();
|
||||||
|
|
Loading…
Reference in a new issue