Skip to content
Snippets Groups Projects
Unverified Commit ff0e54c3 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

HAFAS: Handle H9380

parent 2d1f3bcd
No related branches found
No related tags found
No related merge requests found
...@@ -292,16 +292,20 @@ sub show_message { ...@@ -292,16 +292,20 @@ sub show_message {
if ( my $err = $hafas->errstr ) { if ( my $err = $hafas->errstr ) {
say STDERR "Request error: ${err}"; say STDERR "Request error: ${err}";
if ( $hafas->errcode if ( $hafas->errcode ) {
and ( $hafas->errcode eq 'H730' or $hafas->errcode eq 'LOCATION' ) ) if ( $hafas->errcode eq 'H730' or $hafas->errcode eq 'LOCATION' ) {
{ show_similar_stops();
show_similar_stops(); }
} elsif ( $hafas->errcode eq 'H890' ) {
elsif ( $hafas->errcode and $hafas->errcode eq 'H890' ) { say q{};
say q{}; say 'HAFAS was unable to find suitable connections.';
say 'HAFAS was unable to find suitable connections.'; say
say
'Maybe your mode of transport (-m) or change (-c / -C) filters are too restrictive?'; 'Maybe your mode of transport (-m) or change (-c / -C) filters are too restrictive?';
}
elsif ( $hafas->errcode eq 'H9380' ) {
say q{};
say 'Arrival / departure / intermediate stops must not overlap.';
}
} }
exit 2; exit 2;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment