diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Travel/Status/DE/DeutscheBahn.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Travel/Status/DE/DeutscheBahn.pm b/lib/Travel/Status/DE/DeutscheBahn.pm index be0621d..8fb0ca2 100644 --- a/lib/Travel/Status/DE/DeutscheBahn.pm +++ b/lib/Travel/Status/DE/DeutscheBahn.pm @@ -144,6 +144,11 @@ sub results { next; } my $stop = $1; + + if ( $stop =~ m{ [(] Halt \s entf.llt [)] }ox ) { + next; + } + push( @via, $stop ); } |