fix(server): Use inner join

https://github.com/syuilo/misskey/issues/6813#issuecomment-803400023
This commit is contained in:
syuilo
2021-03-21 10:39:32 +09:00
parent 9bb6dc52b8
commit d7e7848c92
19 changed files with 91 additions and 91 deletions

View File

@@ -87,11 +87,11 @@ export default define(meta, async (ps, user) => {
.andWhere(`notification.notifieeId = :meId`, { meId: user.id })
.leftJoinAndSelect('notification.notifier', 'notifier')
.leftJoinAndSelect('notification.note', 'note')
.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');
query.andWhere(`notification.notifierId NOT IN (${ mutingQuery.getQuery() })`);
query.setParameters(mutingQuery.getParameters());