@@ -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')
|
||||
.innerJoinAndSelect('note.user', 'user')
|
||||
.innerJoinAndSelect('note.reply', 'reply')
|
||||
.innerJoinAndSelect('note.renote', 'renote')
|
||||
.innerJoinAndSelect('reply.user', 'replyUser')
|
||||
.innerJoinAndSelect('renote.user', 'renoteUser');
|
||||
.leftJoinAndSelect('note.user', 'user')
|
||||
.leftJoinAndSelect('note.reply', 'reply')
|
||||
.leftJoinAndSelect('note.renote', 'renote')
|
||||
.leftJoinAndSelect('reply.user', 'replyUser')
|
||||
.leftJoinAndSelect('renote.user', 'renoteUser');
|
||||
|
||||
query.andWhere(`notification.notifierId NOT IN (${ mutingQuery.getQuery() })`);
|
||||
query.setParameters(mutingQuery.getParameters());
|
||||
|
Reference in New Issue
Block a user