diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-05-26 19:24:04 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-05-26 19:24:04 +0200 |
commit | 5946c7941bd105fea6c038f41156c73720e04328 (patch) | |
tree | 637714d208f638bd6560ecc35f90c9e43286f235 /bin/db-iris | |
parent | cec9c94940c35f95cc9333a981725800dbdd3a04 (diff) |
distinguish between cancelled arrivals and cancelled departures
Diffstat (limited to 'bin/db-iris')
-rwxr-xr-x | bin/db-iris | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/db-iris b/bin/db-iris index f13606e..46c1532 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -253,6 +253,9 @@ sub format_delay { if ( $d->is_cancelled ) { $delay = ' CANCELED'; } + elsif ( $d->departure_is_cancelled ) { + $delay .= ' ⊖'; + } return $delay; } |