<?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-UkNationalRail - stops updating on mirror]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nwootton" aria-label="Profile: nwootton">@<bdi>nwootton</bdi></a> thought I’d check to see if you have any ideas what could be causing an issue I’ve been having with the UK train times… When its been running for a while I often notice that it seems to have stopped updating itself so will be frozen showing train time in the past. This happens every couple of days, no specific time it can happen mid day or at night (when there are no trains scheduled so nothing to see ‘No departure info found’). It has kind of always done this, although it used to go the best part of a week before requiring a restart.</p>
<p dir="auto">When it occurs I can confirm that all the other modules on my mirror are still happily updating. Also if I fire up the mirror webpage on my laptop it has the correct up to date info.</p>
<p dir="auto">No errors logged in PM2 error &amp; as far as teh pm2 out log looks everything still working ok.</p>
<p dir="auto">I restart mm &amp; it fires up as normal. Any thoughts? Any further steps I should take to troubleshoot?</p>
<p dir="auto">I’m fairly certain its gotten worse since updating to MM 2.1.3, seems like I’m rebooting every other day now.</p>
]]></description><link>https://forum.magicmirror.builders/topic/5250/mmm-uknationalrail-stops-updating-on-mirror</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 16:20:13 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/5250.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 12 Oct 2017 18:40:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Thu, 21 Dec 2017 09:47:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/randomnoise" aria-label="Profile: randomnoise">@<bdi>randomnoise</bdi></a> Glad you got the answer from Transport API.</p>
<p dir="auto">I had a quick look at the code, but not having a Pi/Mirror available to run soak tests I’ve not been able to fully test it.</p>
<p dir="auto">I’ll drop the edits.</p>
<p dir="auto">N</p>
]]></description><link>https://forum.magicmirror.builders/post/32581</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/32581</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Thu, 21 Dec 2017 09:47:07 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Tue, 19 Dec 2017 18:58:50 GMT]]></title><description><![CDATA[<p dir="auto">Got some feedback from the transaport api people today… seems they have figured out &amp; resolved the back end data feed issue…it was related to stanox station code data dropping leading zeros for some stations (of which mine was one)… this caused their data to include trains which had already departed as they weren’t being seen to have passed through the station.</p>
<p dir="auto">I’ve reverted back to the original version of your code it is working fine again.</p>
<p dir="auto">On another note, I’ve tried swapping to using chromium to display the MM… I notice it does render other elements a lot better so maybe wont have the same problem with the train data stopping updating… time will tell.</p>
]]></description><link>https://forum.magicmirror.builders/post/32491</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/32491</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Tue, 19 Dec 2017 18:58:50 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Wed, 06 Dec 2017 22:43:02 GMT]]></title><description><![CDATA[<p dir="auto">I got a reply from transport api- seems this issue is not just limited to my station:</p>
<p dir="auto">"<br />
Since last week we have been investigating an issue with live data for many Scottish trains stations being off by one hour. This is not effecting all stations in Scotland. In fact we had thought the issue was concentrated around Glasgow, so it’s useful to have this report of this example.</p>
<p dir="auto">In any case it seems likely to be an issue with the underlying data feed in these areas. We are working to pin down exactly what is going wrong, so that we can report it to the data suppliers. We shall let you know what we find."</p>
<p dir="auto">So in that event I’ve pressed on with modifying the module to avoid this data.</p>
<p dir="auto">I’ve moved my time check code to the processtrains function… It mostly works, except whenever I try to increment the counter once Ive skipped a row (so that the total values displayed should match the ‘max results’ parameter it stops working. Any ideas where I could be going wrong?</p>
<pre><code>for (var i = 0; i &lt; counter; i++) {

                            var thisTrain = data.departures.all[i];
							
							//Check current time vs. departure &amp; don't show it if it's past departure
							var nowtime = new Date();
							nowtime = ("0" + nowtime.getHours()).slice(-2) + ":" +
							("0" + nowtime.getMinutes()).slice(-2) + ":" +
							("0" + nowtime.getSeconds()).slice(-2);
							if (thisTrain.expected_departure_time &lt; nowtime) 
							{
							//Train already departed so we need to increment counter
							counter++;
							
							} else {
							//additional check to see if counter now exceeds length of data
							if (counter &gt; data.departures.all.length){
								window.alert("counter exceeds data length");
							}
							else{
								//push data
                            this.trains.data.push({
                                plannedDeparture: thisTrain.aimed_departure_time,
                                actualDeparture: thisTrain.expected_departure_time,
                                status: thisTrain.status,
                                origin: thisTrain.origin_name,
                                destination: thisTrain.destination_name,
                                leavesIn: thisTrain.best_arrival_estimate_mins,
                                platform: thisTrain.platform
                            });
							}
							
							}
                        }
</code></pre>
<p dir="auto">I threw in the alert to see when the if was proving as true, but if my counter value is over the limit it just throws the pop up straight away rather than sending through the data. Am I wrong in thinking it should at least be pushing the lines through up until the condition is met?</p>
]]></description><link>https://forum.magicmirror.builders/post/32021</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/32021</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Wed, 06 Dec 2017 22:43:02 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Mon, 04 Dec 2017 20:53:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nwootton" aria-label="Profile: nwootton">@<bdi>nwootton</bdi></a> - Haven’t heard back from the dev support… I suspect I’m not a big enough user of the service. It’s very strange it only seems to happen for my station though (I’ve only tried a few other stations from the list admittedly).</p>
<p dir="auto">I have been able to kind of sort it by hacking your .js though. Apologies for crudeness of code… <img src="/assets/uploads/files/1512420431062-15-i-have-no-idea.jpg" alt="0_1512420443721_15-i-have-no-idea.jpg" class=" img-fluid img-markdown" /></p>
<pre><code>//With data returned
        if (this.trains.data.length &gt; 0) {
            for (var t in this.trains.data) {
                var myTrain = this.trains.data[t];
				//Check current time vs. departure &amp; don't show it if it's past departure
				var nowtime = new Date();
				nowtime = ("0" + nowtime.getHours()).slice(-2) + ":" +
				("0" + nowtime.getMinutes()).slice(-2) + ":" +
				("0" + nowtime.getSeconds()).slice(-2);
				if (myTrain.actualDeparture &lt; nowtime) 
				{
					//Do nothing
				}
				else{
                //Create row for data item
</code></pre>
<p dir="auto">Its a purely string based comparison so works while time is in 24 hour format (and will bork around midnight, but I don’t get any trains later than that…) Also as its just not displaying the earlier ones I’d need to take that in to account in the loop counter (otherwise max results is also off)… Kind of at least proves it works.</p>
<p dir="auto">I’ll need to figure out a bit more about js programming to maybe make this work better. If I can do that &amp; figure out how to use git more than just to clone would you be willing to have a config option for something like ‘trim departed trains from results’?</p>
]]></description><link>https://forum.magicmirror.builders/post/31958</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31958</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Mon, 04 Dec 2017 20:53:46 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Sun, 26 Nov 2017 17:29:06 GMT]]></title><description><![CDATA[<p dir="auto">I suggest your best bet is to log an issue with TransportAPI as they might be able to identify if the issue lies with them or with the info coming through from the train operator.</p>
]]></description><link>https://forum.magicmirror.builders/post/31625</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31625</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Sun, 26 Nov 2017 17:29:06 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Sat, 25 Nov 2017 13:57:41 GMT]]></title><description><![CDATA[<p dir="auto">Ok, think I’ve figured this one out by manually loading the api json in my browser. The earlier train which is late is showing as being over 1 hour late (even though that’s not what it shows on the estimated departure time).</p>
<p dir="auto">This means that the trains following are still in the list even though they have departed.</p>
<p dir="auto">Either this has been happening every day atm, or there’s something screwy in the transport api database.</p>
<pre><code>0	
mode	"train"
service	"23540003"
train_uid	"G81206"
platform	null
operator	"SR"
operator_name	"Scotrail"
aimed_departure_time	"12:56"
aimed_arrival_time	"12:56"
aimed_pass_time	null
origin_name	"Aberdeen"
source	"Network Rail"
destination_name	"Glasgow Queen Street"
category	"XX"
service_timetable	

status	"LATE"
expected_arrival_time	"12:58"
expected_departure_time	"12:58"
best_arrival_estimate_mins	-54
best_departure_estimate_mins	-54
1	
mode	"train"
service	"23541003"
train_uid	"G80279"
platform	null
operator	"SR"
operator_name	"Scotrail"
aimed_departure_time	"13:25"
aimed_arrival_time	"13:24"
aimed_pass_time	null
origin_name	"Aberdeen"
source	"Network Rail"
destination_name	"Edinburgh Waverley"
category	"XX"
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/31589</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31589</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Sat, 25 Nov 2017 13:57:41 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Sat, 25 Nov 2017 13:45:04 GMT]]></title><description><![CDATA[<p dir="auto">It’s definitely not just that those trains being late in my earlier example either-</p>
<p dir="auto"><img src="/assets/uploads/files/1511617493901-untitled4.png" alt="0_1511617493458_Untitled4.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/31588</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31588</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Sat, 25 Nov 2017 13:45:04 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Sat, 25 Nov 2017 13:42:34 GMT]]></title><description><![CDATA[<p dir="auto">Hmm, weirdly York station works ok.</p>
<p dir="auto">Maybe something is up with the api data for STN.</p>
<p dir="auto"><img src="/assets/uploads/files/1511617348233-untitled3.png" alt="0_1511617346950_Untitled3.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/31587</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31587</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Sat, 25 Nov 2017 13:42:34 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Sat, 25 Nov 2017 13:35:02 GMT]]></title><description><![CDATA[<p dir="auto">I’ve expanded to show 8 results here as well…<br />
<img src="/assets/uploads/files/1511616891094-untitled2.png" alt="0_1511616890606_Untitled2.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/31586</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31586</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Sat, 25 Nov 2017 13:35:02 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Sat, 25 Nov 2017 13:29:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nwootton" aria-label="Profile: nwootton">@<bdi>nwootton</bdi></a>, Well after a full rebuild I still have never been able to get to the bottom of why it locks up. Still does it on occasion (Although it seems to be less frequent these days).</p>
<p dir="auto">I have a new weird bug with the train times for you now though! Recently (may have been since the clocks changed, although I only noticed it the other day as I was checking time on a train I was going to catch) I seem to be showing times an hour behind! It’s bizarre as I don’t think there are any settings anywhere in the mirror for adjusting times other than the PI config settings (mine is showing correct time &amp; UTC if I run a ‘date’ command in putty).</p>
<p dir="auto">Any thoughts on what this could be?</p>
<p dir="auto"><img src="/assets/uploads/files/1511616532923-untitled.png" alt="0_1511616532091_Untitled.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/31585</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31585</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Sat, 25 Nov 2017 13:29:29 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Tue, 31 Oct 2017 20:17:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nwootton" aria-label="Profile: nwootton">@<bdi>nwootton</bdi></a> after running since Sunday with no errors &amp; console open, today train times finally crashed around 10:30am… then the entire mirror seems to have fallen over tonight just before I came home… the clock had stopped, all modules not updating and even the dev console was gone!</p>
<p dir="auto">Hard reset of mirror, but of course nothing to see in pm2 logs as I didn’t start it with pm2…</p>
<p dir="auto">unless the dev console also logs to a file somewhere then this exercise was in vain.</p>
<p dir="auto">I think I’ll just try a full reinstall at the weekend &amp; see if it behaves itself. I wish I’d taken a note of all the other tweaks I added to get the pi running as I liked.<br />
<img src="/assets/uploads/files/1509481004857-crash-resized.jpg" alt="0_1509481035614_crash.jpg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/30457</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30457</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Tue, 31 Oct 2017 20:17:25 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Fri, 27 Oct 2017 10:25:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nwootton" aria-label="Profile: nwootton">@<bdi>nwootton</bdi></a> no worries, I’ll be home again on Sun so will try the dev console &amp;  see if anything stands out. As you say it may be electron related so I might just do a full pi + mm rebuild / reinstall.</p>
<p dir="auto">Thanks for having a look in to it.</p>
]]></description><link>https://forum.magicmirror.builders/post/30247</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30247</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Fri, 27 Oct 2017 10:25:13 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Fri, 27 Oct 2017 09:25:20 GMT]]></title><description><![CDATA[<p dir="auto">Still running without issue this morning, although I’m now getting emails about hitting my daily API usage allowance from the Transport API.</p>
<p dir="auto">The only errors I’m getting are ones that the module generates when it doesn’t get the expected train info from Transport API - generally around 02:00 when no passenger trains are actually running.</p>
<p dir="auto">Sorry to say that without being able to replicate the issue, there is very little more I can do.</p>
]]></description><link>https://forum.magicmirror.builders/post/30246</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30246</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Fri, 27 Oct 2017 09:25:20 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Wed, 25 Oct 2017 06:53:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/randomnoise" aria-label="Profile: randomnoise">@<bdi>randomnoise</bdi></a> The mm_error_log file is not something I’ve come across, I assume it is the failure report generated by PM2 that lists all the times it has had to restart a service.</p>
<p dir="auto">npm start dev displays the mirror, but also has a full JS console output running down the side of the screen. The “No departure info” message in my previous post is an example of that output.</p>
]]></description><link>https://forum.magicmirror.builders/post/30140</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30140</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Wed, 25 Oct 2017 06:53:33 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Wed, 25 Oct 2017 06:50:24 GMT]]></title><description><![CDATA[<p dir="auto">So still running without issues.</p>
<p dir="auto"><img src="/assets/uploads/files/1508914169001-screen-shot-2017-10-25-at-07.41.48.png" alt="0_1508914168404_Screen Shot 2017-10-25 at 07.41.48.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Got all the expected “No departure info” errors in the console for the overnight period where trains don’t actually run.</p>
<p dir="auto"><img src="/assets/uploads/files/1508914177189-screen-shot-2017-10-25-at-07.42.49.png" alt="0_1508914176864_Screen Shot 2017-10-25 at 07.42.49.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Have you updated the module itself?</p>
]]></description><link>https://forum.magicmirror.builders/post/30139</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30139</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Wed, 25 Oct 2017 06:50:24 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Tue, 24 Oct 2017 20:04:06 GMT]]></title><description><![CDATA[<p dir="auto">BTW does the npm dev start give any detail beyond what is logged to the mm_error_log file seen when running using pm2?</p>
]]></description><link>https://forum.magicmirror.builders/post/30121</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30121</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Tue, 24 Oct 2017 20:04:06 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Tue, 24 Oct 2017 20:02:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nwootton" aria-label="Profile: nwootton">@<bdi>nwootton</bdi></a> not sure what version of node I’m running atm (I’m away for work)… I’ll try the npm start dev when I’m back &amp; see if anything stands out.</p>
<p dir="auto">I run the mirror standalone so, yes I guess it could be an issue with something in the pi browser, but it is a fairly standard mm build installed following the instructions from mm git page.</p>
<p dir="auto">I’ll report back once I’ve tried the dev start.</p>
]]></description><link>https://forum.magicmirror.builders/post/30120</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30120</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Tue, 24 Oct 2017 20:02:05 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Tue, 24 Oct 2017 09:14:22 GMT]]></title><description><![CDATA[<p dir="auto">I <em>used</em> to run the mirror 2.1.2 on a RPi3, but that PI got repurposed for another project and is unlikely to make it back. For dev work I run it in either server or dev mode on a Mac. I’m running v2.1.3 on Node v8.7.0/npm v5.5.1 on the dev machine.</p>
<p dir="auto">As it the mirror is a client-server architecture, it makes sense that the server part would be still receiving info from the Transport API. This seems to point to either Electron (UI) or <a href="http://Sockets.io" target="_blank" rel="noopener noreferrer nofollow ugc">Sockets.io</a> failure rather than data ingest.</p>
<p dir="auto">What version of Node &amp; npm is running on your mirror? Are you running it as an all-in-one or are you running it in a different way (server only, docker)?</p>
<p dir="auto">There is a simple “debug” : true setting you can add to the module config, but that mostly just gives the params &amp; url that would be used by the module to contact the TransportAPI. The only other way is to launch the mirror using:</p>
<pre><code>npm start dev
</code></pre>
<p dir="auto">which will start Electron and also display a debug console on the right hand side of the screen.</p>
]]></description><link>https://forum.magicmirror.builders/post/30094</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30094</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Tue, 24 Oct 2017 09:14:22 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Mon, 23 Oct 2017 18:33:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nwootton" aria-label="Profile: nwootton">@<bdi>nwootton</bdi></a> Hmm, that’s weird. I guess it could be an issue specific to my mirror. What os do you use? Have you also upgraded to 2.1.3 of mm as well?</p>
<p dir="auto">I might try a rebuild &amp; see if that improves it.</p>
<p dir="auto">Is there any way to add in debug logging to text file? Perhaps when it updates the data from transport api &amp; refreshes the screen.</p>
<p dir="auto">What I found strange was that even while it’s stopped updating on my actual mirror, it will work fine in a browser on another machine on my network (does this actually run another version of node helper etc or is the mirror still fetching the data?)</p>
]]></description><link>https://forum.magicmirror.builders/post/30059</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30059</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Mon, 23 Oct 2017 18:33:19 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Mon, 23 Oct 2017 10:42:32 GMT]]></title><description><![CDATA[<p dir="auto">OK, I’ve had my test environment running for a couple of days running both my station and your config with the provided station ID.</p>
<p dir="auto"><img src="/assets/uploads/files/1508755348824-screen-shot-2017-10-23-at-11.41.59.png" alt="0_1508755348541_Screen Shot 2017-10-23 at 11.41.59.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">So far I’ve not seen the module fail to update, although the mirror itself has frozen on 1 occasion. I’ll keep trying it, but it’s quite difficult to debug without actually figuring out how to replicate it.</p>
]]></description><link>https://forum.magicmirror.builders/post/30034</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/30034</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Mon, 23 Oct 2017 10:42:32 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Mon, 16 Oct 2017 08:44:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/randomnoise" aria-label="Profile: randomnoise">@<bdi>randomnoise</bdi></a> Can you tell me the station code? I can’t try to replicate or even figure out if it’s the provider without it.</p>
]]></description><link>https://forum.magicmirror.builders/post/29629</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/29629</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Mon, 16 Oct 2017 08:44:03 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Mon, 16 Oct 2017 08:33:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nwootton" aria-label="Profile: nwootton">@<bdi>nwootton</bdi></a> Mainly going with defaults, but here is what I’m using.</p>
<pre><code>{
		module: 'MMM-UKNationalRail',
		position: 'top_left',
		config: {
			stationCode: 		'[My 3 letter station code]', 		// CRS code for station
			app_id: 			'[My ID]', 	// TransportAPI App ID
			app_key: 			'[My api key]', // TransportAPI App Key
			maxResults: 		4,  //Optional - Maximum results to display.
			showOrigin: 		false   //Optional - Show the origin of the train in the table
			}
		},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/29628</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/29628</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Mon, 16 Oct 2017 08:33:20 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Mon, 16 Oct 2017 08:10:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/randomnoise" aria-label="Profile: randomnoise">@<bdi>randomnoise</bdi></a> Can you send me your config for the module? Don’t need the API keys, but the rest of it would allow me to see if it’s something specific to the data provider.</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forum.magicmirror.builders/post/29627</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/29627</guid><dc:creator><![CDATA[nwootton]]></dc:creator><pubDate>Mon, 16 Oct 2017 08:10:13 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-UkNationalRail - stops updating on mirror on Sun, 15 Oct 2017 19:57:35 GMT]]></title><description><![CDATA[<p dir="auto">No worries, let me know if I can do anything to give you any further info to assist with troubleshooting. Cheers.</p>
]]></description><link>https://forum.magicmirror.builders/post/29605</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/29605</guid><dc:creator><![CDATA[randomnoise]]></dc:creator><pubDate>Sun, 15 Oct 2017 19:57:35 GMT</pubDate></item></channel></rss>