Closed boutell closed 8 years ago
This logic:
cursor.and({ start: { $gte: new Date() } });
Will drop events that already started even if they last a week.
I suggest:
cursor.and({ end: { $lte: new Date() } })
This logic:
Will drop events that already started even if they last a week.
I suggest: