@sdetweil Strange, as I sat here the module started working without any additional changes. Perhaps the fact that midnight struck and we entered a new month had something to do with it?? I just remotely checked the installation on my other family member’s mirror and it too is working. Go figure. And thanks for your time and suggestions!
For the record, here is my original response to your question about git pull and npm update:
Yep, tried that. Fooled around with variety of settings. Used a bare bones config with just the module name and position (it then shows the mini calendar and the days, but it does not populate with any events). When I noticed that it wasn’t showing anything past 5/30, I experimented with the Google Calendar itself. If I added an event to 5/31 it wouldn’t show up, but if I added a new event to 5/30 it would. I’m in the US Eastern Time Zone, configured for Detroit.
Here’s my calendar config in case it helps (I have fooled around with this too…further changing the maximumNumberOfDays and maximumEntries or leaving them with their default values):
{
//Not shown. Used for configuration of CalendarExt3Agenda
module: "calendar",
//position: "top_right",
config: {
maximumNumberOfDays: 60,
maximumEntries: 30,
calendars:
[ {
symbol: "calendar-check",
url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics",
name: "us_holiday",
},
{
url: 'https://calendar.google.com/calendar/ical/redacted/basic.ics',
name: "familyAgenda",
fetchInterval: 1000 * 60 * 2, //every two minutes
}
]
}
},