A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Calendar module shows entries outer range
-
@sdetweil Can I sent you a board mail?
-
@monkye u can send text to my email. same userid at gmail
-
@sdetweil I sent you the mail to your account. Thank you in advance
-
@monkye thanks for the ics file…
reviewing the events, this is a bug in the RRULE processor the calendar module uses
but not our codehttps://github.com/jakubroztocil/rrule/issues/275
if you remove the BYMONTHDAY=11
RRULE:FREQ=YEARLY;WKST=MO;INTERVAL=1;BYMONTHDAY=11
then it works as expected
just for info, this issue was opened on Sep 5, 2018 and has not yet been fixed
so I am not hopeful on a more timely resolution -
Many, many THANKS to you. I‘m happy that you resolve this problem
-
Workaround:
A little script solve the problem. In the ICS-file at HOME directory will the „BYMONTHDAY“ part deleted.sed -r 's/INTERVAL=1;BYMONTHDAY=[0-9][0-9]?/INTERVAL=1/g' / ~/mycalendar.ics
-
@monkye nice!