diff options
author | Daniel Friesel <derf@finalrewind.org> | 2022-01-30 00:09:01 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2022-01-30 00:09:01 +0100 |
commit | 5299b7ba58d863e9990ac0794a6b12fc6f8b0dd3 (patch) | |
tree | 2631f5bad3afce8342fe22eeb1f41c028026224c /lib | |
parent | b4f2978792b1abb8ec994aa96f993641d6bdfb53 (diff) |
json_route_diff: add missing $self argument
Diffstat (limited to 'lib')
-rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index a8e90fc..8eece0d 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -200,7 +200,7 @@ sub log_api_access { } sub json_route_diff { - my ( $route, $sched_route ) = @_; + my ( $self, $route, $sched_route ) = @_; my @json_route; my @route = @{$route}; my @sched_route = @{$sched_route}; |