fix(backend): users/notesでセンシティブチャンネルの投稿が含まれる場合がある問題を修正
This commit is contained in:
parent
8a302a9af4
commit
cf3624a54f
|
@ -18,6 +18,7 @@
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- Fix: フォローしているユーザーからの自分の投稿への返信がタイムラインに含まれない問題を修正
|
- Fix: フォローしているユーザーからの自分の投稿への返信がタイムラインに含まれない問題を修正
|
||||||
|
- Fix: users/notesでセンシティブチャンネルの投稿が含まれる場合がある問題を修正
|
||||||
|
|
||||||
## 2023.10.0
|
## 2023.10.0
|
||||||
### NOTE
|
### NOTE
|
||||||
|
|
|
@ -150,7 +150,9 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
.leftJoinAndSelect('reply.user', 'replyUser')
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
||||||
.leftJoinAndSelect('renote.user', 'renoteUser');
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
||||||
|
|
||||||
if (!ps.withChannelNotes) {
|
if (ps.withChannelNotes) {
|
||||||
|
if (!isSelf) query.andWhere('channel.isSensitive = false');
|
||||||
|
} else {
|
||||||
query.andWhere('note.channelId IS NULL');
|
query.andWhere('note.channelId IS NULL');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue