mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 04:02:12 +00:00
Make calendarfetcher return all events, not just a slice
This commit is contained in:
parent
e86fa9d24a
commit
1ba845fb06
@ -376,7 +376,8 @@ const CalendarFetcher = function (url, reloadInterval, excludedEvents, maximumEn
|
|||||||
return a.startDate - b.startDate;
|
return a.startDate - b.startDate;
|
||||||
});
|
});
|
||||||
|
|
||||||
events = newEvents.slice(0, maximumEntries);
|
// events = newEvents.slice(0, maximumEntries);
|
||||||
|
events = newEvents;
|
||||||
|
|
||||||
self.broadcastEvents();
|
self.broadcastEvents();
|
||||||
scheduleTimer();
|
scheduleTimer();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user