Return HTTP 404 for unknown journeys

This commit is contained in:
Daniel Friesel 2020-01-19 19:21:14 +01:00
parent 2764826da0
commit 9232cdaa5f

View file

@ -660,6 +660,7 @@ sub journey_details {
if ( not( $journey_id and $journey_id =~ m{ ^ \d+ $ }x ) ) {
$self->render(
'journey',
status => 404,
error => 'notfound',
journey => {}
);
@ -683,6 +684,7 @@ sub journey_details {
else {
$self->render(
'journey',
status => 404,
error => 'notfound',
journey => {}
);
@ -743,6 +745,7 @@ sub edit_journey {
if ( not( $journey_id =~ m{ ^ \d+ $ }x ) ) {
$self->render(
'edit_journey',
status => 404,
error => 'notfound',
journey => {}
);
@ -759,6 +762,7 @@ sub edit_journey {
if ( not $journey ) {
$self->render(
'edit_journey',
status => 404,
error => 'notfound',
journey => {}
);