refactor: fix types

This commit is contained in:
syuilo
2022-02-15 23:08:50 +09:00
parent 9d7352a9e4
commit 7492a158d2
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ export function generateRepliesQuery(q: SelectQueryBuilder<any>, me?: Pick<User,
.andWhere('note.replyUserId = note.userId');
}));
}));
} else if(!me.showTimelineReplies) {
} else if (!me.showTimelineReplies) {
q.andWhere(new Brackets(qb => { qb
.where(`note.replyId IS NULL`) // 返信ではない
.orWhere('note.replyUserId = :meId', { meId: me.id }) // 返信だけど自分のノートへの返信