-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.1.2 calendar not displaying full day events #980
Comments
In the other release it is working? Can you testing in 2.1.1? |
Yes, it used to work in 2.1.1 and 2.1.0 |
Is ist possible to config the calendar that all events from today getting ignored and only show events starting tomorrow? Been tryin around but I couldn´t get that done. |
I tried to do some debugging. It seems node_helper returns "CALENDAR_EVENTS" but does not fill the payload with any events. Hence, the error must be somewhere in calendarfetcher.js. How can I debug that file? |
I think I found the issue. I have a calendar for birthdays which used to display fine. However, since recently it does not work anymore. This is an extract from the iCal data:
As you can see, the start and end date are prior to 1970-01-01. This apparently is what causes an uncaught exception:
Any ideas on what to do - except changing the original iCal data which is a workaround, but not a nice one? Any help highly appreciated! Many thanks, |
Apologies - just found that issue #839 already exists with this topic. Hence, consider this one closed. |
@cschwarz007 Yeah, it's a restriction of UNIX (and by extension, Linux) because the time system on these OS's starts at 00:00:01 on January 1, 1970. Dates before that are considered invalid because time before then is negative, and the computer knows that time cannot be negative. |
2.1.2 calendar does not display any full day events. The error can be reproduced on my RaspberryPi with a full day event in either calendar I am including in config.js:
{ module: 'calendar', position: 'top_left', config: { maximumEntries: 20, fadePoint: 0.7, maxTitleLength: 27, calendars: [ { symbol: 'calendar-plus-o', url: 'https://calendar.google.com/calendar/ical/[removed]/basic.ics' }, { symbol: 'birthday-cake', url: 'https://calendar.google.com/calendar/ical/[removed]/basic.ics' } ], titleReplace: { "'s Birthday": "" }, } },
The text was updated successfully, but these errors were encountered: