Jacek Kowalski
2019-06-17 5b197e725c9eadf39212253c7976bc4ca181320e
Increase allowed time difference for data from 60 to 120 seconds
1 files modified
4 ■■■■ changed files
parse.php 4 ●●●● patch | view | raw | blame | history
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!');
        }