fix(server): Use inner join

This commit is contained in:
syuilo 2021-03-21 12:33:37 +09:00
parent c52b504140
commit 70b129cc42
18 changed files with 18 additions and 18 deletions

View file

@ -120,7 +120,7 @@ export default define(meta, async (ps, user) => {
.where('note.userId = :meId', { meId: user.id });
if (hasFollowing) qb.orWhere(`note.userId IN (${ followingQuery.getQuery() })`);
}))
.leftJoinAndSelect('note.user', 'user')
.innerJoinAndSelect('note.user', 'user')
.leftJoinAndSelect('note.reply', 'reply')
.leftJoinAndSelect('note.renote', 'renote')
.leftJoinAndSelect('reply.user', 'replyUser')