mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 20:23:49 +01:00
Use _id instead of createdAt to improve performance
This commit is contained in:
parent
fff0e8bc6d
commit
6ea01697b1
@ -38,12 +38,8 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
|
||||
if (pollErr) return rej('invalid poll param');
|
||||
|
||||
const query = {
|
||||
createdAt: {
|
||||
$gte: new Date(Date.now() - ms('1days'))
|
||||
},
|
||||
renoteCount: {
|
||||
$gt: 0
|
||||
},
|
||||
_id: { $gte: new Date(Date.now() - ms('1days')) },
|
||||
renoteCount: { $gt: 0 },
|
||||
'_user.host': null
|
||||
} as any;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user