ハイライトでミュートしているユーザーの投稿が含まれる問題を修正
This commit is contained in:
parent
ed0fdaddbd
commit
fe00cb9ad5
2 changed files with 6 additions and 1 deletions
|
@ -4,6 +4,7 @@ ChangeLog
|
|||
unreleased
|
||||
----------
|
||||
* デッキでユーザーを表示したときにタイムラインが残存する問題を修正
|
||||
* ハイライトでミュートしているユーザーの投稿が含まれる問題を修正
|
||||
|
||||
10.87.5
|
||||
----------
|
||||
|
|
|
@ -2,6 +2,7 @@ import $ from 'cafy';
|
|||
import Note from '../../../../models/note';
|
||||
import { packMany } from '../../../../models/note';
|
||||
import define from '../../define';
|
||||
import { getHideUserIds } from '../../common/get-hide-users';
|
||||
|
||||
export const meta = {
|
||||
desc: {
|
||||
|
@ -25,6 +26,8 @@ export const meta = {
|
|||
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
||||
const day = 1000 * 60 * 60 * 24 * 2;
|
||||
|
||||
const hideUserIds = await getHideUserIds(user);
|
||||
|
||||
const notes = await Note
|
||||
.find({
|
||||
createdAt: {
|
||||
|
@ -32,7 +35,8 @@ export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
|||
},
|
||||
deletedAt: null,
|
||||
visibility: { $in: ['public', 'home'] },
|
||||
'_user.host': null
|
||||
'_user.host': null,
|
||||
...(hideUserIds && hideUserIds.length > 0 ? { userId: { $nin: hideUserIds } } : {})
|
||||
}, {
|
||||
limit: ps.limit,
|
||||
sort: {
|
||||
|
|
Loading…
Reference in a new issue