diff options
Diffstat (limited to 'share/find-missing')
-rwxr-xr-x | share/find-missing | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/share/find-missing b/share/find-missing index e69a7a1..618fc78 100755 --- a/share/find-missing +++ b/share/find-missing @@ -44,6 +44,9 @@ my $status = Travel::Status::DE::IRIS->new( my @missing; for my $result ( $status->results ) { + if ( $result->type eq 'Bus' ) { + next; + } for my $name ( $result->route_pre, $result->route_post ) { my @matches = Travel::Status::DE::IRIS::Stations::get_station_by_name($name); |