summaryrefslogtreecommitdiff
path: root/lib/Travel/Routing/DE/VRR.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Travel/Routing/DE/VRR.pm')
-rw-r--r--lib/Travel/Routing/DE/VRR.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Travel/Routing/DE/VRR.pm b/lib/Travel/Routing/DE/VRR.pm
index 665d5bc..c7193e1 100644
--- a/lib/Travel/Routing/DE/VRR.pm
+++ b/lib/Travel/Routing/DE/VRR.pm
@@ -26,7 +26,7 @@ use Exception::Class (
},
'Travel::Routing::DE::VRR::Exception::NoData' => {
isa => 'Travel::Routing::DE::VRR::Exception',
- description => 'got no data to parse',
+ description => 'backend returned no parsable route',
},
'Travel::Routing::DE::VRR::Exception::Ambiguous' => {
isa => 'Travel::Routing::DE::VRR::Exception',
@@ -590,7 +590,7 @@ sub parse {
$self->parse_part($part);
}
- if ( @{ $self->{routes} } == 0 ) {
+ if ( not defined $self->{routes} or @{ $self->{routes} } == 0 ) {
Travel::Routing::DE::VRR::Exception::NoData->throw();
}