From bf02f1b05042be56ed4ba5a23f4790909ae3329b Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 18 Jul 2021 00:05:24 +0200 Subject: show warning if realtime data is missing --- lib/DBInfoscreen/Controller/Stationboard.pm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib') diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index c01d299..b71d6d8 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -679,6 +679,9 @@ sub render_train { } } if ($route_ts) { + if ( $route_ts->{ $result->station }{rt_bogus} ) { + $departure->{missing_realtime} = 1; + } for my $elem ( @{ $departure->{route_pre_diff} }, @{ $departure->{route_post_diff} } @@ -688,6 +691,9 @@ sub render_train { { $elem->{$key} = $route_ts->{ $elem->{name} }{$key}; } + if ( $elem->{rt_bogus} ) { + $departure->{partially_missing_realtime} = 1; + } } } if ( $route_info and @{ $route_info->{messages} // [] } ) { -- cgit v1.2.3