<?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[mess calendar module (solved for me)]]></title><description><![CDATA[[[topic:post-is-deleted]]]]></description><link>https://forum.magicmirror.builders/topic/14460/mess-calendar-module-solved-for-me</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Jul 2026 05:31:06 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/14460.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 18 Jan 2021 12:02:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to mess calendar module (solved for me) on Wed, 27 Jan 2021 20:32:26 GMT]]></title><description><![CDATA[<p dir="auto">@hango said in <a href="/post/87895">mess calendar module (solved for me)</a>:</p>
<blockquote>
<p dir="auto">with absolute time format you can play for relative dates on urgency, but for all time relative at line 366 in calendar.js instead</p>
<pre><code>timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").calendar());
</code></pre>
<p dir="auto">must be</p>
<pre><code>timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").fromNow());
</code></pre>
<p dir="auto">see the diference between first and third picture</p>
</blockquote>
<p dir="auto">Agreed, I spotted the same when I looked at your pictures. Changing calendar() to fromNow() will solve your issue. I will create a PR for this fix but will also try to improve other things that this discussion has brought on.</p>
]]></description><link>https://forum.magicmirror.builders/post/87898</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/87898</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Wed, 27 Jan 2021 20:32:26 GMT</pubDate></item></channel></rss>