summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2020-11-21 15:39:21 +0100
committerDaniel Friesel <derf@finalrewind.org>2020-11-21 15:39:21 +0100
commit0addce7bff7dd87c663e09217659dc0555d93453 (patch)
tree7ea0a26140da91f560a82adfe20e345324059758 /lib
parentccfdd8007e136d5d98652d415dda8eb595a2ada9 (diff)
month overview: distinguish between no stats and no journeys1.18.10
Diffstat (limited to 'lib')
-rwxr-xr-xlib/Travelynx/Model/Journeys.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Travelynx/Model/Journeys.pm b/lib/Travelynx/Model/Journeys.pm
index 9330707..750c8b1 100755
--- a/lib/Travelynx/Model/Journeys.pm
+++ b/lib/Travelynx/Model/Journeys.pm
@@ -749,9 +749,9 @@ sub get_months_for_year {
month => $row->{month}
}
)->expand->hash;
- if ($stats) {
- $ret[ $row->{month} - 1 ][2] = $stats->{data};
- }
+
+ # undef -> no journeys for this month; empty hash -> no cached stats
+ $ret[ $row->{month} - 1 ][2] = $stats->{data} // {};
}
}
return @ret;