Commit 05dca603 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

db-iris: show a note if a train should have realtime data, but doesn't.

parent 79ce6586
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -293,6 +293,9 @@ sub format_delay {
	elsif ( $d->departure_is_cancelled ) {
		$delay .= '';
	}
	elsif ( $d->start < $datetime and not $d->has_realtime ) {
		$delay = '  ?';
	}

	return $delay;
}