diff --git a/migrations/preen_cron.js b/migrations/preen_cron.js index ec1d71bb9c..51f2491db5 100644 --- a/migrations/preen_cron.js +++ b/migrations/preen_cron.js @@ -25,7 +25,7 @@ db.users.find({ //if (!user) return; var lastCron = user.lastCron; if (lastCron && moment(lastCron).isValid()) { - if (Math.abs(moment(today).diff(lastCron, 'days')) > 5) { + if (Math.abs(moment(today).diff(lastCron, 'days')) > 3) { return db.users.remove({_id: user._id}); } } else {