From 218a38496d8907175346b81ce8a4afbe2943d1fd Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Mon, 17 Apr 2017 19:04:42 +0000
Subject: [PATCH] Fix problem with departures not loading when unknown vehicle is present on list

---
 map.js |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/map.js b/map.js
index 6ffe9e4..e7b821d 100644
--- a/map.js
+++ b/map.js
@@ -153,6 +153,9 @@
 	
 	for(var i = 0; i < stops.length; i++) {
 		var stop = stops[i];
+		
+		if(stop.category == 'other') continue;
+		
 		stop.geometry = getGeometry(stop);
 		var stop_feature = new ol.Feature(stop);
 		

--
Gitblit v1.9.1