I just updated this morning to the latest version (magicmirror@2.31.0-develop start) . It wasn’t working on the previous version either. Well, I should say that it was working for the first couple of weeks and then that second calendar just stopped updating without a force refresh.
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
O
Latest posts made by oquendo421
-
RE: MMM-CalendarExt3 only one calendar not updating
-
MMM-CalendarExt3 only one calendar not updating
I am using CalendarExt3 to display two iCloud calendars. One is called Family_Monthly and the other is called Work. The Family calendar updates just fine but the Work calendar will not update at all.
On initial startup the Work calendar will not display unless I do refresh. After that, no changes will display unless I do a manual refresh. Again, the family calendar has no issues. They are both being pulled from my iCloud. I have tried all different versions of messing with refresh interval but it’s been a few weeks and I’m not getting anywhere. Thanks for the help. Config file below:
modules: [ { module: "alert", }, /*{ module: "updatenotification", position: "top_bar" },*/ { module: "clock", position: "top_center" }, { module: "calendar", header: "Family Calendar", position: "top_left", config: { maximumEntries: 4, broadcastEvents: true, broadcastPastEvents: true, fade: false, coloredSymbolOnly: true, colored: true, calendars: [ { refreshInterval: 60 * 1000, // Resfresh interval: 1 minute symbol: "calendar-check", name: "Family_Monthly", url: "webcal://Family Calendar iCloud Link", color: "orange", }, { refreshInterval: 60 * 1000, // Resfresh interval: 1 minute symbol: "calendar-check", name: "Work", url: "webcal://Work Calendar iCloud Link", color: "#cc99cc", wrapEvents: true, showEnd: true, }, ] } }, { module: "MMM-CalendarExt3", position: "fullscreen_below", config: { mode: "month", maxEventLines: 7, firstDayOfWeek: 0, //refreshInterval: 60 * 1000, // Resfresh interval: 1 minute fontSize: '22px', showWeekNumbers: false, calendarSet: [], } }, ]
};