summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2017-09-17 15:10:32 +0200
committerDaniel Friesel <derf@finalrewind.org>2017-09-17 15:10:32 +0200
commitb0a9973139fe13cecc14185b6c07262c4c114fc7 (patch)
tree1fbcc18ab4254df105ff199ae253e85053940e0e /bin
parentdb888ca1ca3131578bc15b5b829021c07287164f (diff)
Add API and CLI output for cancelled route parts (delay -9999)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/efa5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/efa b/bin/efa
index 36ee898..44fa754 100755
--- a/bin/efa
+++ b/bin/efa
@@ -214,7 +214,10 @@ sub display_routes {
sub display_connection {
my ($c) = @_;
- if ( $c->delay ) {
+ if ( $c->is_cancelled ) {
+ say '# FAHRT FĂ„LLT AUS';
+ }
+ elsif ( $c->delay ) {
printf( "# +%d, Plan: %s -> %s\n",
$c->delay, $c->departure_stime, $c->arrival_stime );
}