<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-Calendar not seem to load .ics]]></title><description><![CDATA[<p dir="auto">Today I have installed a fresh copy of MagicMirror on my PI.</p>
<p dir="auto">When I edit the calendar config and a update and restart my MagicMirror pid. The calander comes with an error: " Calendar Error. Could not fetch calendar"</p>
<p dir="auto">When I try the URL on the raspberrry pi itself it does download an .ics file which I can open and can see lines of text.</p>
<p dir="auto">Anyone has an idea what could possible gowrong here.</p>
<p dir="auto">In did work in the past with the same URL, like a year ago.</p>
]]></description><link>https://forum.magicmirror.builders/topic/18110/mmm-calendar-not-seem-to-load-ics</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 17:13:29 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/18110.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 22 Oct 2023 00:42:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Tue, 24 Oct 2023 23:01:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> said in <a href="/post/112050">MMM-Calendar not seem to load .ics</a>:</p>
<blockquote>
<p dir="auto">You are a genius!!</p>
</blockquote>
<p dir="auto">well, i don’t know about that… I’ve just spent the last few years fixing bugs in there</p>
]]></description><link>https://forum.magicmirror.builders/post/112051</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112051</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 24 Oct 2023 23:01:08 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Tue, 24 Oct 2023 22:57:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
This did the trick, thank you very much.</p>
<p dir="auto">You are a genius!!</p>
]]></description><link>https://forum.magicmirror.builders/post/112050</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112050</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Tue, 24 Oct 2023 22:57:32 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 23:09:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> try this</p>
<pre><code>cd ~/MagicMirror/modules/default/calendar
cp calendarfetcherutils.js  utils.js
nano calendarfetcherutils.js 
</code></pre>
<p dir="auto">insert this line</p>
<pre><code>						futureLocal = futureMoment.toDate(); // future
					}
					if(moment(endDate)&gt;=moment(pastLocal)){ //&lt;--- this line (approx line 283) 

						Log.debug(`Search for recurring events between: ${pastLocal} and ${futureLocal}`);
						const dates = rule.between(pastLocal, futureLocal, true, limitFunction);

</code></pre>
<p dir="auto">and this line</p>
<pre><code>							i
									description: description
								});
							}
						} // &lt; ----- this line (approx line 454)
					}
</code></pre>
<p dir="auto">this adds a check if the event end is after the calculated start (for include past events thats a year back) , then process the event, else skip it…</p>
<p dir="auto">let me know</p>
]]></description><link>https://forum.magicmirror.builders/post/112028</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112028</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 23:09:22 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 22:41:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> awesome, will need you to run it again with one debugging change</p>
<p dir="auto">in calendarfetchutils.js<br />
change this</p>
<pre><code>					Log.debug(`event.recurrences: ${event.recurrences}`);
</code></pre>
<p dir="auto">to this</p>
<pre><code>			Log.debug("event.recurrences:" +JSON.stringify(event.recurrences));
</code></pre>
<p dir="auto">but I really think its THIS</p>
<pre><code>DTSTART;TZID="Amsterdam, Belgrade, Berlin, Brussels, Budapest, Madrid, Paris, Prague, Stockholm":20210415T190000
DTEND;TZID="Amsterdam, Belgrade, Berlin, Brussels, Budapest, Madrid, Paris, Prague, Stockholm":20210415T210000

the until is outside the event window start/end (04/15, this is 04/18) 
RRULE:FREQ=DAILY;UNTIL=20210418T170000Z  
</code></pre>
<p dir="auto">AND the event is in the past 2021<br />
but the code tried to find recurrences THIS year</p>
<pre><code>Tue Oct 24 2023 00:16:22 GMT+0200 (Midden-Europese zomertijd) and Tue Oct 22 2024 23:59:59 GMT+0200 (M&gt;
[24.10.2023 00:16.22.051] [DEBUG] Title: xxx xxxx, with dates: [null,null,null,null]  &lt;----- and returned junk.. those are bad dates. 
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/112027</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112027</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 22:41:45 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 22:21:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
Think I found it, will check back tomorrow.</p>
<pre><code>BEGIN:VEVENT
DTSTAMP:20210413T203456Z
UID:E689AEB8C02C4E2CADD8C7D3D303CEAD0
DTSTART;TZID="Amsterdam, Belgrade, Berlin, Brussels, Budapest, Madrid, Paris, Prague, Stockholm":20210415T190000
DTEND;TZID="Amsterdam, Belgrade, Berlin, Brussels, Budapest, Madrid, Paris, Prague, Stockholm":20210415T210000
CLASS:PUBLIC
LOCATION:albert heijn
SUMMARY:xxx xxxx
SEQUENCE:10
RRULE:FREQ=DAILY;UNTIL=20210418T170000Z
EXDATE;TZID="Amsterdam, Belgrade, Berlin, Brussels, Budapest, Madrid, Paris, Prague, Stockholm":20210417T190000
EXDATE;TZID="Amsterdam, Belgrade, Berlin, Brussels, Budapest, Madrid, Paris, Prague, Stockholm":20210416T190000
EXDATE;TZID="Amsterdam, Belgrade, Berlin, Brussels, Budapest, Madrid, Paris, Prague, Stockholm":20210415T190000
BEGIN:VALARM
ACTION:DISPLAY
TRIGGER;RELATED=START:-PT15M
END:VALARM
END:VEVENT
</code></pre>
<pre><code>{"type":"VEVENT","params":[],"uid":"E689AEB8C02C4E2CADD8C7D3D303CEAD0","start":"2021-04-15T17:00:00.000Z","datetype":"date-time","end":"2021-04-15T19:00:00.000Z","a94d8d2a-3&gt;
[24.10.2023 00:16.22.001] [DEBUG] start: Thu Apr 15 2021 19:00:00 GMT+0200 (Midden-Europese zomertijd)
[24.10.2023 00:16.22.001] [DEBUG] end:: Thu Apr 15 2021 21:00:00 GMT+0200 (Midden-Europese zomertijd)
[24.10.2023 00:16.22.002] [DEBUG] duration: 7200000
[24.10.2023 00:16.22.002] [DEBUG] title: xxx xxxx
[24.10.2023 00:16.22.002] [DEBUG] Search for recurring events between: Tue Oct 24 2023 00:16:22 GMT+0200 (Midden-Europese zomertijd) and Tue Oct 22 2024 23:59:59 GMT+0200 (M&gt;
[24.10.2023 00:16.22.051] [DEBUG] Title: xxx xxxx, with dates: [null,null,null,null]
[24.10.2023 00:16.22.051] [DEBUG] event.recurrences: [object Object]
[24.10.2023 00:16.22.055] [ERROR] Calendar Error. Could not fetch calendar:  https://url/ical/url/Calendar.ics RangeError: Invalid time value
    at Date.toISOString (&lt;anonymous&gt;)
    at /home/dennis/MagicMirror/modules/default/calendar/calendarfetcherutils.js:312:28
    at Array.forEach (&lt;anonymous&gt;)
    at Object.filterEvents (/home/dennis/MagicMirror/modules/default/calendar/calendarfetcherutils.js:140:24)
    at /home/dennis/MagicMirror/modules/default/calendar/calendarfetcher.js:72:36
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)

</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/112026</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112026</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Mon, 23 Oct 2023 22:21:46 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 21:54:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> the one that throws the error in the somefile.txt, then look it up in the ICS file</p>
]]></description><link>https://forum.magicmirror.builders/post/112025</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112025</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 21:54:05 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 21:49:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
I don’t think I understand what you’re asking.<br />
What event you want me to find?</p>
]]></description><link>https://forum.magicmirror.builders/post/112024</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112024</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Mon, 23 Oct 2023 21:49:02 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 21:29:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> thx… I meant download the ics file and find that entry</p>
<p dir="auto">like this from my calendar</p>
<pre><code>BEGIN:VEVENT
DTSTART:20160729T233000Z
DTEND:20160730T010000Z
DTSTAMP:20231023T212812Z
UID:2prgqt2idcgs5jjf0bvd557v6k@google.com
CREATED:20160912T121808Z
LAST-MODIFIED:20160912T121808Z
LOCATION:georgetown
SEQUENCE:0
STATUS:CONFIRMED
SUMMARY:Dinner at Monument Cafe
TRANSP:OPAQUE
END:VEVENT
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/112023</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112023</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 21:29:16 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 21:25:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">Is this what you are looking for?</p>
<pre><code>[23.10.2023 23:18.36.721] [ERROR] Calendar Error. Could not fetch calendar:  https://**url**/ical/**url**/Calendar.ics RangeError: Invalid time value
    at Date.toISOString (&lt;anonymous&gt;)
    at /home/dennis/MagicMirror/modules/default/calendar/calendarfetcherutils.js:312:28
    at Array.forEach (&lt;anonymous&gt;)
    at Object.filterEvents (/home/dennis/MagicMirror/modules/default/calendar/calendarfetcherutils.js:140:24)
    at /home/dennis/MagicMirror/modules/default/calendar/calendarfetcher.js:72:36
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
[23.10.2023 23:18.38.049] [DEBUG] parsed data={"ecaf4d70-3f05-470f-a8f3-2566b4f2f1b5":{"type":"VTIMEZONE","params":[],"tzid":"Europe/Amsterdam","487c4058-cf12-4ad3-9d19-abf7c43101a2":{&gt;
[23.10.2023 23:18.38.053] [DEBUG] There are 327 calendar entries.
[23.10.2023 23:18.38.055] [DEBUG] Processing entry...
[23.10.2023 23:18.38.058] [DEBUG] Processing entry...
[23.10.2023 23:18.38.060] [DEBUG] Event:

</code></pre>
<pre><code>[23.10.2023 23:18.38.153] [ERROR] Calendar Error. Could not fetch calendar:  https://**url**/ical/**url**/Calendar.ics RangeError: Invalid time value
    at Date.toISOString (&lt;anonymous&gt;)
    at /home/dennis/MagicMirror/modules/default/calendar/calendarfetcherutils.js:312:28
    at Array.forEach (&lt;anonymous&gt;)
    at Object.filterEvents (/home/dennis/MagicMirror/modules/default/calendar/calendarfetcherutils.js:140:24)
    at /home/dennis/MagicMirror/modules/default/calendar/calendarfetcher.js:72:36
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
[23.10.2023 23:18.39.055] [DEBUG] parsed data={"634747":{"type":"VEVENT","params":[],"dtstamp":"2018-03-19T19:38:00.000Z","uid":"634747","description":"Datum: 04/24/2018\nTijd: 19:30\n&gt;
[23.10.2023 23:18.39.060] [DEBUG] There are 434 calendar entries.
[23.10.2023 23:18.39.061] [DEBUG] Processing entry...
[23.10.2023 23:18.39.061] [DEBUG] Event:
{"type":"VEVENT","params":[],"dtstamp":"2018-03-19T19:38:00.000Z","uid":"634747","description":"Datum: 04/24/2018\nTijd: 19:30\n\nTot dan!\n\nP.S.: Gebruik je GMAIL? Controleer of de t&gt;
[23.10.2023 23:18.39.062] [DEBUG] start: Tue Apr 24 2018 19:30:00 GMT+0200 (Midden-Europese zomertijd)

</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/112022</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112022</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Mon, 23 Oct 2023 21:25:05 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 21:13:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> this sounds like an ics data format problem</p>
<p dir="auto">change this line in config.js</p>
<pre><code>logLevel: ["INFO", "LOG", "WARN", "ERROR"], 
</code></pre>
<p dir="auto">to</p>
<pre><code>logLevel: ["INFO", "LOG", "WARN", "ERROR","DEBUG"], 
</code></pre>
<p dir="auto">then start MM like this</p>
<pre><code>pm2 stop all
cd ~/MagicMirror
npm start &gt; somefile.txt 2&gt;&amp;1
</code></pre>
<p dir="auto">wait 15 seconds<br />
then in the same window as where you did npm start do<br />
ctrl-c<br />
and then  examine the somefile.txt to see where that error is…</p>
<p dir="auto">i’d like to see the ics file entry for that event<br />
npm start</p>
]]></description><link>https://forum.magicmirror.builders/post/112021</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112021</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 21:13:46 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 21:12:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
This seem to work like a charm, thank you for fixing this.</p>
<p dir="auto">Now…when I want to add 2 more url’s I get a new error:<br />
For each of the new url. Both from the same domain.<br />
is it possible to have a hacky line for that as well?</p>
<pre><code>[ERROR] Calendar Error. Could not fetch calendar:  https://www.xxxxxxxx/ical/**url**/Calendar.ics RangeError: Invalid time value

</code></pre>
<pre><code>[23.10.2023 22:56.15.687] [LOG]   Create new calendarfetcher for url: https://**url**/ical/**url**/Calendar.ics - Interval: 3600000
[23.10.2023 22:56.15.728] [LOG]   Create new calendarfetcher for url: https://**url**/ical/**url**/Calendar.ics - Interval: 3600000
[23.10.2023 22:56.15.733] [LOG]   Create new calendarfetcher for url: https://**url**/ical/**url**/Calendar.ics - Interval: 3600000
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/112020</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112020</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Mon, 23 Oct 2023 21:12:47 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 20:14:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a></p>
<p dir="auto">ok, lets try this</p>
<pre><code>cd ~/MagicMirror/modules/default/calendar
cp calendarfetcher.js  savefetcher.js
nano calendarfetcher.js 
</code></pre>
<p dir="auto">then insert this line</p>
<pre><code>const Log = require("logger");
const fetchit = require('node-fetch');   //&lt;----- add this line
const NodeHelper = require("node_helper");

</code></pre>
<p dir="auto">then add this line</p>
<pre><code>		const nodeVersion = Number(process.version.match(/^v(\d+\.\d+)/)[1]);
		let fetcher = null //&lt;------ add this line
		let httpsAgent = null;
</code></pre>
<p dir="auto">then later change this</p>
<pre><code>		fetch(url, { headers: headers, agent: httpsAgent })
</code></pre>
<p dir="auto">to this</p>
<pre><code>		if (fetcher === null) {
			fetcher = fetchit(url, { headers: headers, agent: httpsAgent });
		}
		fetcher
</code></pre>
<p dir="auto">then save, (ctrl-o)<br />
and exit nano (ctrl-x)</p>
<p dir="auto">then</p>
<pre><code>cd ~/MagicMirror
npm install node-fetch@2
</code></pre>
<p dir="auto">then npm start<br />
calendar should come up<br />
mine works…</p>
]]></description><link>https://forum.magicmirror.builders/post/112019</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112019</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 20:14:13 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 19:43:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">I’'l be happy to test and try out things or methods to fix this issue.<br />
Thanks in advance</p>
]]></description><link>https://forum.magicmirror.builders/post/112018</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112018</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Mon, 23 Oct 2023 19:43:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 19:22:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> I hear you.</p>
<p dir="auto">none of the code that needs to be debugged is ours(mm) it’s all lower layers.</p>
<p dir="auto">let me see if there is a hacky way to help you out.</p>
]]></description><link>https://forum.magicmirror.builders/post/112015</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112015</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 19:22:24 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 19:16:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
Point is, it has worked before… like a charm for over 2 years.<br />
Recently we moved to another house and we have not been using the mirror for 8-9 months, now I reinstalled the OS and modules and now the calendar stopped working.</p>
<p dir="auto">Is there any way I can try and sort out what the source of this issue could be?</p>
]]></description><link>https://forum.magicmirror.builders/post/112014</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112014</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Mon, 23 Oct 2023 19:16:09 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 19:06:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> the browser has error recovery code that we don’t, probably.   they’ve had fetch for a long time. years…</p>
<p dir="auto">this is one of the.problens w trying to keep up with changes and general supportability .</p>
]]></description><link>https://forum.magicmirror.builders/post/112013</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112013</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 19:06:11 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 18:48:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">This is the url of my Kerio mailserver. It is my own dedicated server running in NL.<br />
You asked to xxx out the url right?</p>
<p dir="auto">If the connection is terminated before completion of the transmission, why is it that if I just paste the url in the default browser on raspberry, I just get to download the .ics file? What am I missing here?</p>
]]></description><link>https://forum.magicmirror.builders/post/112012</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112012</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Mon, 23 Oct 2023 18:48:03 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 18:13:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> said in <a href="/post/112009">MMM-Calendar not seem to load .ics</a>:</p>
<blockquote>
<p dir="auto"><a href="https://www.xxx.xx/ical" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.xxx.xx/ical</a>   TypeError: terminated</p>
</blockquote>
<p dir="auto">this seems to indicate a problem with the server not sending the required info. ( and terminating the connection before the complete transmission was received) . the new internal fetch is enforcing the spec, which the prior node-fetch did not.</p>
<p dir="auto">can u identify what</p>
<pre><code>https://www.xxx.xx
</code></pre>
<p dir="auto">this is exactly?</p>
]]></description><link>https://forum.magicmirror.builders/post/112010</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112010</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Oct 2023 18:13:56 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Mon, 23 Oct 2023 18:01:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
Thank you for replying, I hope you can make something out of it.</p>
<p dir="auto">I posted a snap from the config and some errors from the log.</p>
<pre><code>                {
                        module: "calendar",
                        header: "Agenda",
                        position: "top_left",
                        config: {
                            coloredText: true,
                            fade: false,
                            calendars: [
                                {
                                        url: "https://www.xxx.xx/ical/xxxx@xxx.xx/Calendar.ics",
                                        symbol: "calendar-check",
                                        color:  "#ffb350"
                                }
                              ]
                        }
                },

</code></pre>
<pre><code>[1917:1023/200030.144271:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: Bestand of map bestaat niet (2)

</code></pre>
<pre><code>[ERROR] Calendar Error. Could not fetch calendar:  https://www.xxx.xx/ical/xxxxs@xxx.xx/Calendar.ics TypeError: terminated

</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/112009</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/112009</guid><dc:creator><![CDATA[Dennis-010]]></dc:creator><pubDate>Mon, 23 Oct 2023 18:01:41 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Calendar not seem to load .ics on Sun, 22 Oct 2023 11:35:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dennis-010" aria-label="Profile: Dennis-010">@<bdi>Dennis-010</bdi></a> do you mean the default calendar built into mm?</p>
<p dir="auto">I cannot find a module called MMM-Calendar</p>
<p dir="auto">if u mean the default<br />
can you show the config.js section for the calendar</p>
<p dir="auto">xxx out the url</p>
]]></description><link>https://forum.magicmirror.builders/post/111945</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/111945</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 22 Oct 2023 11:35:36 GMT</pubDate></item></channel></rss>