diff options
-rw-r--r-- | Changelog | 5 | ||||
-rwxr-xr-x | bin/db-iris | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +git HEAD + + * Fix warnings when encountering unplanned (fchg-only) trains without + arrival or departure platform + Travel::Status::DE::IRIS 0.01 - Fri Jan 24 2014 * Initial release. Experimental, API may change without notice diff --git a/bin/db-iris b/bin/db-iris index 147119d..baf7627 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -247,7 +247,7 @@ for my $d ( $status->results() ) { [ $timestr, $d->train, $edata{route} ? join( q{ }, $d->route_interesting ) : q{}, - $d->route_end, $d->platform, $d + $d->route_end, $d->platform // q{}, $d ] ); } |