fix(server): Use inner join
https://github.com/syuilo/misskey/issues/6813#issuecomment-803400023
This commit is contained in:
@@ -63,11 +63,11 @@ export default define(meta, async (ps, user) => {
|
||||
.where(`:meId = ANY(note.mentions)`, { meId: user.id })
|
||||
.orWhere(`:meId = ANY(note.visibleUserIds)`, { meId: user.id });
|
||||
}))
|
||||
.leftJoinAndSelect('note.user', 'user')
|
||||
.leftJoinAndSelect('note.reply', 'reply')
|
||||
.leftJoinAndSelect('note.renote', 'renote')
|
||||
.leftJoinAndSelect('reply.user', 'replyUser')
|
||||
.leftJoinAndSelect('renote.user', 'renoteUser');
|
||||
.innerJoinAndSelect('note.user', 'user')
|
||||
.innerJoinAndSelect('note.reply', 'reply')
|
||||
.innerJoinAndSelect('note.renote', 'renote')
|
||||
.innerJoinAndSelect('reply.user', 'replyUser')
|
||||
.innerJoinAndSelect('renote.user', 'renoteUser');
|
||||
|
||||
generateVisibilityQuery(query, user);
|
||||
generateMutedUserQuery(query, user);
|
||||
|
Reference in New Issue
Block a user