summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2017-05-26 19:24:04 +0200
committerDaniel Friesel <derf@finalrewind.org>2017-05-26 19:24:04 +0200
commit5946c7941bd105fea6c038f41156c73720e04328 (patch)
tree637714d208f638bd6560ecc35f90c9e43286f235 /bin
parentcec9c94940c35f95cc9333a981725800dbdd3a04 (diff)
distinguish between cancelled arrivals and cancelled departures
Diffstat (limited to 'bin')
-rwxr-xr-xbin/db-iris3
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;
}