diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2020-10-25 17:02:34 +0100 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2020-10-25 17:02:34 +0100 | 
| commit | d1c5aa040038174bb7bd58b11d1f3004866e9fd0 (patch) | |
| tree | 1d9db82ecd40661464f54882ea8b9f0ab59c66c8 /lib/DBInfoscreen/Controller | |
| parent | 5c3f8eae71b8a3eb4f7b5acf96858f861041f5ca (diff) | |
return 404 for train not found, 300 for multiple station choice
Diffstat (limited to 'lib/DBInfoscreen/Controller')
| -rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index 42f388e..c6f697f 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -675,7 +675,8 @@ sub train_details {  	if ( not @{ $data->{results} } ) {  		$self->render(  			'landingpage', -			error => "Keine Abfahrt von $train_no in $station gefunden", +			error  => "Keine Abfahrt von $train_no in $station gefunden", +			status => 404,  		);  		return;  	} @@ -686,7 +687,8 @@ sub train_details {  	if ( not $result ) {  		$self->render(  			'landingpage', -			error => "Keine Abfahrt von $train_no in $station gefunden", +			error  => "Keine Abfahrt von $train_no in $station gefunden", +			status => 404,  		);  		return;  	} | 
