From 7a58f50a20cb2517f310cd93494ad1833158def2 Mon Sep 17 00:00:00 2001
From: p0358 <p0358@users.noreply.github.com>
Date: Sun, 29 Oct 2017 15:31:21 +0000
Subject: [PATCH] 2 fixes (typo and boarding animation when arrows weren't shown yet)
---
stops/download_stops.php | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/stops/download_stops.php b/stops/download_stops.php
index 3990585..3a8227c 100644
--- a/stops/download_stops.php
+++ b/stops/download_stops.php
@@ -4,6 +4,7 @@
$json = file_get_contents('http://www.ttss.krakow.pl/internetservice/geoserviceDispatcher/services/stopinfo/stops?left=-648000000&bottom=-324000000&right=648000000&top=324000000');
$elements = json_decode($json, 1);
foreach($elements['stops'] as $element) {
+ if($element['category'] == 'other') continue;
$stops[$element['shortName']] = $element['name'];
}
--
Gitblit v1.9.1