diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2021-07-18 00:05:24 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2021-07-18 00:05:24 +0200 | 
| commit | bf02f1b05042be56ed4ba5a23f4790909ae3329b (patch) | |
| tree | 6b11249183ea396cc250222dac2ed611c874e684 /lib/DBInfoscreen | |
| parent | 5b06acde2a2345524962c7e64d4696a0ce917883 (diff) | |
show warning if realtime data is missing
Diffstat (limited to 'lib/DBInfoscreen')
| -rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 6 | 
1 files changed, 6 insertions, 0 deletions
| 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} // [] } ) { | 
