リモートユーザーはおすすめユーザーに含めないように

This commit is contained in:
syuilo 2018-04-14 14:22:58 +09:00
parent 366e1f7df5
commit bcc5449e47

View file

@ -30,15 +30,13 @@ module.exports = (params, me) => new Promise(async (res, rej) => {
_id: { _id: {
$nin: followingIds $nin: followingIds
}, },
$or: [ $or: [{
{
'lastUsedAt': { 'lastUsedAt': {
$gte: new Date(Date.now() - ms('7days')) $gte: new Date(Date.now() - ms('7days'))
} }
}, { }, {
host: { $ne: null } host: null
} }]
]
}, { }, {
limit: limit, limit: limit,
skip: offset, skip: offset,