I’m having some issues with broadcastPastEvents: true
. Past events aren’t showing up on the calendar. Below is the default calendar code and the MMM-CalendarExt3 code. As well as a screenshot.
{
module: "calendar",
header: "Events",
position: "top_left",
config: {
fetchInterval: "1000",
colored: true,
broadcastPastEvents: true,
calendars: [
{
name: "us_holidays",
url: //URL//,
symbol: "calendar-check",
color: "#338FFF",
broadcastPastEvents: true,
},
{
name: "mikes_cal",
url: //URL//,
},
{
name: "dinners",
url: //URL//,
symbol: "utensils",
color: "#FFFB21",
broadcastPastEvents: true,
},
]
}
},
{
module: "MMM-CalendarExt3",
position: "bottom_right",
weekIndex: "0",
config: {
broadcastPastEvents: true,
mode: "week",
firstDayOfWeek: "0",
refreshInterval: "10000",
calendarSet: ['us_holidays','mikes_cal','dinners'],
}
},