<?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[Error with Outlook Calendar]]></title><description><![CDATA[<p dir="auto">I can’t get an outlook calendar to work with the defualt calendar module. The events just won’t show up. The console error is:</p>
<pre><code>[2020-10-02 22:45:26.002] [ERROR]  Whoops! There was an uncaught exception...
[2020-10-02 22:45:26.003] [ERROR]  TypeError: Cannot read property 'iana' of undefined
    at getIanaTZFromMS (/home/pi/MagicMirror/node_modules/node-ical/ical.js:108:30)
    at /home/pi/MagicMirror/node_modules/node-ical/ical.js:175:23
    at Object.DTSTART (/home/pi/MagicMirror/node_modules/node-ical/ical.js:457:32)
    at Object.handleObject (/home/pi/MagicMirror/node_modules/node-ical/ical.js:483:39)
    at Object.parseLines (/home/pi/MagicMirror/node_modules/node-ical/ical.js:534:18)
    at Object.parseICS (/home/pi/MagicMirror/node_modules/node-ical/ical.js:590:18)
    at Object.sync.parseICS (/home/pi/MagicMirror/node_modules/node-ical/node-ical.js:190:15)
    at Object.autodetect.parseICS (/home/pi/MagicMirror/node_modules/node-ical/node-ical.js:221:17)
    at Request._callback (/home/pi/MagicMirror/modules/default/calendar/calendarfetcher.js:79:22)
    at Request.self.callback (/home/pi/MagicMirror/node_modules/request/request.js:185:22)
</code></pre>
<p dir="auto">The config I have for calendar the calendar module is:</p>
<pre><code>                {
                        module: "calendar",
                        header: "Today",
                        position: "top_left",
                        config: {
                                calendars: [
                                        {
                                                //holidays
                                                symbol: "calendar",
                                                url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics"
                                        },
                                        {
                                                //NEC
                                                symbol: "music",
                                                url: "private_url.ics"
                                        },
                                ],
                                maximumEntries: 25,
                                maximumNumberOfDays: 1,
                                fade: false,
                                getRelative: 0,
                                animationSpeed: 1000,
                        }
                },

</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/13760/error-with-outlook-calendar</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Jul 2026 19:15:09 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/13760.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 03 Oct 2020 02:51:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Error with Outlook Calendar on Thu, 08 Oct 2020 03:13:39 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> Good to know! I’m glad this was helpful.</p>
]]></description><link>https://forum.magicmirror.builders/post/83010</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83010</guid><dc:creator><![CDATA[bokchok]]></dc:creator><pubDate>Thu, 08 Oct 2020 03:13:39 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Tue, 06 Oct 2020 14:03:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> ok, looking thru your calendar, it has a custom timezone named ‘TZID:Eastern Standard Time 1’</p>
<p dir="auto">none of the calendar code knows how to handle this… we don’t lookup the time to find the real name.<br />
so you will get  random results.   the code I added looks up the windows timezone name  in the<br />
<a href="https://github.com/unicode-org/cldr/blob/master/common/supplemental/windowsZones.xml" target="_blank" rel="noopener noreferrer nofollow ugc">unicode.org</a> supported cross reference table to get the <a href="https://www.iana.org/time-zones" target="_blank" rel="noopener noreferrer nofollow ugc">IANA tz</a> name the code can handle…</p>
<p dir="auto">the bug u found was that I ‘assumed’ the name would always be found… but not true…</p>
]]></description><link>https://forum.magicmirror.builders/post/82940</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82940</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 06 Oct 2020 14:03:10 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sun, 04 Oct 2020 13:58:35 GMT]]></title><description><![CDATA[<p dir="auto">I’ve added a troubleshooting topic</p>
<p dir="auto"><a href="https://forum.magicmirror.builders/topic/13770/2-13-calendar-fix-for-office-365-users">https://forum.magicmirror.builders/topic/13770/2-13-calendar-fix-for-office-365-users</a></p>
]]></description><link>https://forum.magicmirror.builders/post/82825</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82825</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 04 Oct 2020 13:58:35 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sun, 04 Oct 2020 13:36:12 GMT]]></title><description><![CDATA[<p dir="auto">ok, looks like it’s my fault. I forgot to update the line in package.json  here,<br />
so it only downloads 0.12.0</p>
<p dir="auto">why I get 0.12.1 I don’t know…<br />
I will fix my install and upgrade scripts, but<br />
will have to write a troubleshooting post for this</p>
<p dir="auto">thanks guys</p>
]]></description><link>https://forum.magicmirror.builders/post/82823</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82823</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 04 Oct 2020 13:36:12 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sun, 04 Oct 2020 12:13:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yunalescar" aria-label="Profile: Yunalescar">@<bdi>Yunalescar</bdi></a> weird</p>
]]></description><link>https://forum.magicmirror.builders/post/82818</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82818</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 04 Oct 2020 12:13:06 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sun, 04 Oct 2020 06:51:21 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> said in <a href="/post/82760">Error with Outlook Calendar</a>:</p>
<blockquote>
<p dir="auto">~/MagicMirror/node_modules/node-ical/package.json</p>
</blockquote>
<p dir="auto">its  “node-ical@0.12.0”</p>
<p dir="auto">so with the installcall i get an old version?  did a fresh install just 12 hours ago and its still 0.12.0</p>
]]></description><link>https://forum.magicmirror.builders/post/82809</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82809</guid><dc:creator><![CDATA[Yunalescar]]></dc:creator><pubDate>Sun, 04 Oct 2020 06:51:21 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 20:52:07 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> Did a clean install, for some reason I have 0.12.0 again. I’m not getting the error, though…</p>
]]></description><link>https://forum.magicmirror.builders/post/82805</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82805</guid><dc:creator><![CDATA[bokchok]]></dc:creator><pubDate>Sat, 03 Oct 2020 20:52:07 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 20:37:48 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> <a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> the develop version probably would have pulled in 0.12.0 sometime last week…</p>
<p dir="auto">but your ics presented other timezone problems for another fix I am working on, so I fixed that too</p>
]]></description><link>https://forum.magicmirror.builders/post/82804</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82804</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 20:37:48 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 20:35:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> i just checked on an install I did thursday</p>
<p dir="auto">grep  version MagicMirror/node_modules/node-ical/package.json<br />
“version”: “0.12.1”,</p>
<p dir="auto">ls  MagicMirror/node_modules/node-ical/package.json  -laF<br />
-rw-r–r-- 1 pi pi 2159 Oct  1 08:24 MagicMirror/node_modules/node-ical/package.json</p>
]]></description><link>https://forum.magicmirror.builders/post/82803</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82803</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 20:35:39 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 20:13:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> the other thing is, the error means that some cal entry is using a timezone which is not registered in the authorized windows timezone names</p>
]]></description><link>https://forum.magicmirror.builders/post/82800</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82800</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 20:13:20 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 20:07:28 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> Weird. I thought I updated after then. I’ll do another clean install and see what happens</p>
]]></description><link>https://forum.magicmirror.builders/post/82797</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82797</guid><dc:creator><![CDATA[bokchok]]></dc:creator><pubDate>Sat, 03 Oct 2020 20:07:28 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 20:05:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> 10 days ago. mm was 2 days ago</p>
]]></description><link>https://forum.magicmirror.builders/post/82796</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82796</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 20:05:23 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 19:45:11 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> The version nmber is 0.12.0<br />
When was 0.12.1 released?</p>
]]></description><link>https://forum.magicmirror.builders/post/82789</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82789</guid><dc:creator><![CDATA[bokchok]]></dc:creator><pubDate>Sat, 03 Oct 2020 19:45:11 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 18:06:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/user/yunalescar" aria-label="Profile: Yunalescar">@<bdi>Yunalescar</bdi></a>   can u look at the package.json in</p>
<p dir="auto">~/MagicMirror/node_modules/node-ical/package.json</p>
<p dir="auto">what is the version number?   should be 0.12.1 (which has the fix for the error)  0.12.0 does not have the fix…</p>
]]></description><link>https://forum.magicmirror.builders/post/82760</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82760</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 18:06:07 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 18:00:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> but. please, lets fix that… I updated both the node-ical libs and the ical.js libs with the same code to handle windows timezones…</p>
<p dir="auto">we ship node-ical with MM…  (new in this release)</p>
<p dir="auto">and I checked the latest 0.12.1</p>
]]></description><link>https://forum.magicmirror.builders/post/82753</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82753</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 18:00:57 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 17:33:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yunalescar" aria-label="Profile: Yunalescar">@<bdi>Yunalescar</bdi></a> Worked! Thank you sir</p>
]]></description><link>https://forum.magicmirror.builders/post/82747</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82747</guid><dc:creator><![CDATA[bokchok]]></dc:creator><pubDate>Sat, 03 Oct 2020 17:33:13 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 17:22:40 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> I was having trouble with upgrading, so I saved config.js in a separate directory and did a clean install of MagicMirror two days ago. Everything should be up to date</p>
]]></description><link>https://forum.magicmirror.builders/post/82746</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82746</guid><dc:creator><![CDATA[bokchok]]></dc:creator><pubDate>Sat, 03 Oct 2020 17:22:40 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 17:18:20 GMT]]></title><description><![CDATA[<p dir="auto">Had same issues.<br />
had a long search and found the soultion:</p>
<p dir="auto">get latest version of ical.js and copy/write it to ~/MagicMirror/node_modules/node-ical.ical.js</p>
<p dir="auto">Link : <a href="https://raw.githubusercontent.com/jens-maus/node-ical/master/ical.js" target="_blank" rel="noopener noreferrer nofollow ugc">https://raw.githubusercontent.com/jens-maus/node-ical/master/ical.js</a></p>
<p dir="auto">now it works like a charm ;)</p>
]]></description><link>https://forum.magicmirror.builders/post/82745</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82745</guid><dc:creator><![CDATA[Yunalescar]]></dc:creator><pubDate>Sat, 03 Oct 2020 17:18:20 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 13:24:20 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> can u verify on 2.13, cause the fix for that is in 2.13</p>
<p dir="auto">grep version ~/MagicMirror/package.json</p>
<p dir="auto">and how did u get there? install or upgrade?</p>
]]></description><link>https://forum.magicmirror.builders/post/82731</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82731</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 13:24:20 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 11:35:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> thanks, will look at it</p>
]]></description><link>https://forum.magicmirror.builders/post/82726</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82726</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 11:35:46 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 03:27:04 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> I’m on 2.13. I went ahead and set you the ics file</p>
]]></description><link>https://forum.magicmirror.builders/post/82719</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82719</guid><dc:creator><![CDATA[bokchok]]></dc:creator><pubDate>Sat, 03 Oct 2020 03:27:04 GMT</pubDate></item><item><title><![CDATA[Reply to Error with Outlook Calendar on Sat, 03 Oct 2020 02:55:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bokchok" aria-label="Profile: bokchok">@<bdi>bokchok</bdi></a> can you show me/send the ics file.</p>
<p dir="auto">are you on version 2.13, or the test iCal version?</p>
<p dir="auto">I fixed that bug in the node-ical version</p>
]]></description><link>https://forum.magicmirror.builders/post/82718</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82718</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Oct 2020 02:55:09 GMT</pubDate></item></channel></rss>