mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
get_travel_distance: do not overwrite {to,from}_eva with undef
This commit is contained in:
parent
cbc1ac791c
commit
298b099097
1 changed files with 2 additions and 2 deletions
|
@ -1136,7 +1136,7 @@ sub get_travel_distance {
|
|||
"Journey $journey->{id} from_eva ($from_eva) is not part of polyline"
|
||||
);
|
||||
for my $entry ( @{$route_ref} ) {
|
||||
if ( $entry->[0] eq $from ) {
|
||||
if ( $entry->[0] eq $from and $entry->[1] ) {
|
||||
$from_eva = $entry->[1];
|
||||
$self->{log}->debug("... setting to $from_eva");
|
||||
last;
|
||||
|
@ -1151,7 +1151,7 @@ sub get_travel_distance {
|
|||
$self->{log}->debug(
|
||||
"Journey $journey->{id} to_eva ($to_eva) is not part of polyline");
|
||||
for my $entry ( @{$route_ref} ) {
|
||||
if ( $entry->[0] eq $to ) {
|
||||
if ( $entry->[0] eq $to and $entry->[1] ) {
|
||||
$to_eva = $entry->[1];
|
||||
$self->{log}->debug("... setting to $to_eva");
|
||||
last;
|
||||
|
|
Loading…
Reference in a new issue