As the title says the Calendar Module showing some events on wrong date, some the day before, some day after, most are correct. I am getting the calendar for a Google calendar my wife and I share. Most things are fine but 2 specific events, both of which are recurring are showing on the wrong date. The first event is correct and then the recurring ones after that one show on the day before, the other one shows the day after but the time is correct on both. I have checked the timezone everywhere I know to and it’s all correct. I have looked at similar posts and have not found anything helpful but I am also a newbee to all this so that could be my own fault.
Here is my config
{
module: “clock”,
position: “top_center”,
config: {
timezone: “America/Los_Angeles”,
lat: “45.3973”,
lon: “-122.2615”,
},
},
{
module: "calendar",
header: "Calendar",
position: "bottom_center",
config: {
calendars: [
{
fetchInterval: 7 * 24 * 60 * 60 * 1000,
symbol: "calendar-check",
url: "https://calendar.google.com/calendar/embed?src=en.usa%23holiday%40group.v.calendar.google.com&ctz=America%2FLos_Angeles"
},
{
fetchInterval: 60 * 60 * 1000, // 1 hour interval
url: "https://calendar.google.com/calendar/ical/...../>
},
],
}
And lastly there is a “ghost” event from when I tried a couple different ways to enter the event that is still being displayed yet it is not on my calendar anymore. Is there a cache that can be cleared?
This is on a Raspberry Pi 5 running Raspberry Pi OS the default browser is set to Chromium.
Any help is would be appreciated, and if anymore info is needed please let me know.