From bb20e035064e845cfd44633717919a64f7550ef8 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Tue, 18 Jun 2019 08:03:17 +0000
Subject: [PATCH] Tram RF329 was rebuilt to GT8N
---
parse.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/parse.php b/parse.php
index 51e3132..c9cde1d 100644
--- a/parse.php
+++ b/parse.php
@@ -49,13 +49,13 @@
$mapper->loadTTSS($source['ttss_file']);
$timeDifference = time() - $mapper->getTTSSDate();
- if(abs($timeDifference) > 60) {
+ if(abs($timeDifference) > 120) {
throw new Exception('TTSS timestamp difference ('.$timeDifference.'s) is too high, aborting!');
}
$mapper->loadGTFSRT($source['gtfsrt_file']);
$timeDifference = time() - $mapper->getGTFSRTDate();
- if(abs($timeDifference) > 60) {
+ if(abs($timeDifference) > 120) {
throw new Exception('GTFSRT timestamp difference ('.$timeDifference.'s) is too high, aborting!');
}
--
Gitblit v1.10.0