diff options
Diffstat (limited to 'templates/single.html.ep')
-rw-r--r-- | templates/single.html.ep | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/single.html.ep b/templates/single.html.ep index 9c60f20..a4e370c 100644 --- a/templates/single.html.ep +++ b/templates/single.html.ep @@ -15,9 +15,9 @@ %= $departure->{train} </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> % } |