Unverified Commit 481c49a3 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

import: Catch errors in get_single and sanity_check

parent 3e2e9cf7
Loading
Loading
Loading
Loading
+14 −8
Original line number Diff line number Diff line
@@ -571,6 +571,7 @@ sub import_v1 {
	my $journey;

	if ( not $error ) {
		eval {
			$journey = $self->journeys->get_single(
				uid        => $uid,
				db         => $db,
@@ -578,7 +579,12 @@ sub import_v1 {
				verbose    => 1
			);
			$error
		  = $self->journeys->sanity_check( $journey, $payload->{lax} ? 1 : 0 );
			  = $self->journeys->sanity_check( $journey,
				$payload->{lax} ? 1 : 0 );
		};
		if ($@) {
			$error = $@;
		}
	}

	if ($error) {