summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-07-28 13:57:23 +0200
committerDaniel Friesel <derf@finalrewind.org>2018-07-28 13:57:23 +0200
commit8880e2b30e3f35ca2013164516d187c5954dc502 (patch)
tree27c19b13cde02d2b00c390b36050b2f5b667a52d
parent996cf36093327864a246f51aba6671aa25b4032b (diff)
is_important: Add "HB" (swiss central stations)
-rw-r--r--index.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.pl b/index.pl
index 1cead7c..ee559f4 100644
--- a/index.pl
+++ b/index.pl
@@ -237,7 +237,7 @@ helper 'handle_no_results_json' => sub {
helper 'is_important' => sub {
my ( $self, $stop ) = @_;
- if ( $stop =~ m{ Hbf | Centraal | Flughafen }ox ) {
+ if ( $stop =~ m{ HB $ | Hbf | Centraal | Flughafen }x ) {
return 1;
}
return;