summaryrefslogtreecommitdiff
path: root/templates/multi.html.ep
diff options
context:
space:
mode:
Diffstat (limited to 'templates/multi.html.ep')
-rw-r--r--templates/multi.html.ep4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/multi.html.ep b/templates/multi.html.ep
index 6e58325..704c589 100644
--- a/templates/multi.html.ep
+++ b/templates/multi.html.ep
@@ -21,9 +21,9 @@
</div>
<div class="via">
-% my $via_max = @{$departure->{via}};
+% my $via_max = @{$departure->{via} // []};
% my $via_cur = 0;
-% for my $stop (@{$departure->{via}}) {
+% for my $stop (@{$departure->{via} // []}) {
% $via_cur++;
<span><%= $stop %><% if ($via_cur < $via_max) { %> - <% } %></span>
% }