Skip to content
Snippets Groups Projects
Commit 8f79386e authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Route/Part.pm: Fix departure_stop_and_platform (closes github #3)

parent ab6e2009
No related branches found
No related tags found
No related merge requests found
git HEAD
* Fix bug in departure_stop_and_platform where the arrival_stop was used
in case of unknown platforms
Travel::Routing::DE::VRR 2.00 - Sun Dec 11 2011
* Now uses the efa.vrr.de XML interface
......
......@@ -44,7 +44,7 @@ sub departure_stop_and_platform {
sprintf( '%s: %s',
$self->get(qw(departure_stop departure_platform)) );
}
return $self->arrival_stop;
return $self->departure_stop;
}
sub extra {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment