Read the statement by Michael Teeuw here.
Basic Calendar log errors
-
@johntech yes, looks like the calendar data has an empty repeating rule and the library code we use
can’t handle thatedit (nano) the MagicMirror/node_modules/rrule/dist/es5/rrule.js
find (ctrl w)
options.byeaster = Number(value);
and add these two lines
case '': break;
so it looks like this
case 'BYEASTER': options.byeaster = Number(value); break; case '': break;
-
@sdetweil said in Basic Calendar log errors:
> case '': > break;
Good!! That fixed the issue of the calendar not displaying , but now it is showing double entries in the list. 2 - Easters, Mother’s Day, President’s day etc.
-
@johntech said in Basic Calendar log errors:
but now it is showing double entries in the list. 2 - Easters, Mother’s Day, President’s day etc.
cause there are two entries in the file
looks like calendarlabs.com is having trouble
-
@sdetweil
Ok. Is it possible to download the file, edit it and use is locally?Thank you for the help!!
John
-
@johntech sure… use the url (change webcal to https)
edit the downloaded file (there are multiples of all the entries)copy the file to the MagixMirror/modules folder (thats where the MM web server is pointing)
then edit the url in the config entry to
“modules/???” // ics filename
-
@sdetweil
Sorry for the misunderstanding but is this what you meant? -
-
@sdetweil
Thank you !!! I wasn’t thinking localhost. Still learning!!