forked from FoundKeyGang/FoundKey
Fix user recommendation query (last activity) (#2892)
This commit is contained in:
parent
1a689f6641
commit
168c773ba0
1 changed files with 4 additions and 7 deletions
|
@ -69,13 +69,10 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
|
|||
$nin: followingIds.concat(mutedUserIds)
|
||||
},
|
||||
isLocked: { $ne: true },
|
||||
$or: [{
|
||||
lastUsedAt: {
|
||||
$gte: new Date(Date.now() - ms('7days'))
|
||||
}
|
||||
}, {
|
||||
host: null
|
||||
}]
|
||||
lastUsedAt: {
|
||||
$gte: new Date(Date.now() - ms('7days'))
|
||||
},
|
||||
host: null
|
||||
}, {
|
||||
limit: limit,
|
||||
skip: offset,
|
||||
|
|
Loading…
Reference in a new issue