From 4fa1eadda90620981c0c6a2378fa933ef14b7a35 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 7 Feb 2014 17:02:10 +0100 Subject: db-iris: fix --via not matching dest of trains with incomplete route data --- bin/db-iris | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/db-iris') diff --git a/bin/db-iris b/bin/db-iris index 9ef3a60..a824fdd 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -272,7 +272,8 @@ for my $d ( $status->results() ) { my @via; - @via = $d->route_post; + # route may be incomplete, so check route_end as well + @via = ( $d->route_post, $d->route_end ); if ( ( $filter_via and not( first { $_ =~ m{$filter_via}io } @via ) ) or ( @grep_class and none { $_ ~~ \@grep_class } $d->classes ) -- cgit v1.2.3