mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-08 09:43:51 +09:00
@ -79,11 +79,11 @@ export default define(meta, async (ps, user) => {
|
||||
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
||||
.andWhere('note.visibility = \'public\'')
|
||||
.andWhere('note.channelId IS NULL')
|
||||
.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');
|
||||
|
||||
generateRepliesQuery(query, user);
|
||||
if (user) generateMutedUserQuery(query, user);
|
||||
|
Reference in New Issue
Block a user