diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-07-28 13:56:54 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-07-28 13:56:54 +0200 |
commit | 8f3b6c8b140782ac737c169aeb51f583ebed7641 (patch) | |
tree | 7f6c80851e1f4c263ca840c76017d50afbefeaf8 /lib | |
parent | e6c95e696c6c0eee2590df00f5a2ca6410300820 (diff) |
route_interesting: Add "HB" (swiss) and "Centraal" (dutch)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Travel/Status/DE/IRIS/Result.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travel/Status/DE/IRIS/Result.pm b/lib/Travel/Status/DE/IRIS/Result.pm index 6a47894..e8909ed 100644 --- a/lib/Travel/Status/DE/IRIS/Result.pm +++ b/lib/Travel/Status/DE/IRIS/Result.pm @@ -680,7 +680,7 @@ sub route_interesting { $max_parts //= 3; for my $stop (@via) { - if ( $stop =~ m{ Hbf | Flughafen }ox ) { + if ( $stop =~ m{ HB $ | Hbf | Centraal | Flughafen }x ) { push( @via_main, $stop ); } } |