mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-25 23:45:13 +00:00
chore: STLのdb fallbackでwithRepliesがtrueのときにすべてのリプライを除外しないように (#12075)
MiFollowingを見るのは実装コストが高いため現状実装していない Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
parent
9afcdd10ed
commit
991fa054a6
1 changed files with 11 additions and 9 deletions
|
@ -182,15 +182,17 @@ 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');
|
||||||
|
|
||||||
query.andWhere(new Brackets(qb => {
|
if (!ps.withReplies) {
|
||||||
qb
|
query.andWhere(new Brackets(qb => {
|
||||||
.where('note.replyId IS NULL') // 返信ではない
|
qb
|
||||||
.orWhere(new Brackets(qb => {
|
.where('note.replyId IS NULL') // 返信ではない
|
||||||
qb // 返信だけど投稿者自身への返信
|
.orWhere(new Brackets(qb => {
|
||||||
.where('note.replyId IS NOT NULL')
|
qb // 返信だけど投稿者自身への返信
|
||||||
.andWhere('note.replyUserId = note.userId');
|
.where('note.replyId IS NOT NULL')
|
||||||
}));
|
.andWhere('note.replyUserId = note.userId');
|
||||||
}));
|
}));
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
this.queryService.generateVisibilityQuery(query, me);
|
this.queryService.generateVisibilityQuery(query, me);
|
||||||
this.queryService.generateMutedUserQuery(query, me);
|
this.queryService.generateMutedUserQuery(query, me);
|
||||||
|
|
Loading…
Reference in a new issue