diff options
| author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-12-13 19:57:36 +0100 | 
|---|---|---|
| committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-12-13 19:57:36 +0100 | 
| commit | 62e1f67234939855c94fc51c41dd4c3f831c6351 (patch) | |
| tree | aad7164fb32ca25cd7e78e64c58a92aa1e5ceb7d /lib/DBInfoscreen/Controller | |
| parent | bc70ecaf26faa2b21079f512e3b2545307d8d3c4 (diff) | |
Always show realtime data; use rt=0 to switch back to schedule data4.32.0
Diffstat (limited to 'lib/DBInfoscreen/Controller')
| -rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index 7d4a25d..c88ea54 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -1690,7 +1690,7 @@ sub handle_efa {  	my $hide_low_delay = $self->param('hidelowdelay') // 0;  	my $hide_opts      = $self->param('hide_opts')    // 0;  	my $show_realtime  = $self->param('rt') // $self->param('show_realtime') -	  // 0; +	  // 1;  	my @departures; @@ -1818,7 +1818,7 @@ sub handle_result {  	my $hide_low_delay = $self->param('hidelowdelay') // 0;  	my $hide_opts      = $self->param('hide_opts')    // 0;  	my $show_realtime  = $self->param('rt') // $self->param('show_realtime') -	  // 0; +	  // 1;  	my $show_details = $self->param('detailed') // 0;  	my $admode       = $self->param('admode')   // 'deparr';  	my $apiver       = $self->param('version')  // 0; | 
