Broadcast all calendar events while still honoring global and per-calendar maximumEntries

This commit is contained in:
Jonathan Kolb
2022-07-02 21:08:43 -04:00
parent 5b1b25fa86
commit f1f2a61dc8
3 changed files with 17 additions and 2 deletions

View File

@@ -498,8 +498,7 @@ const CalendarUtils = {
return a.startDate - b.startDate;
});
let maxEvents = newEvents.slice(0, config.maximumEntries);
return maxEvents;
return newEvents;
},
/**