summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStelios Fragkakis <52996999+stelfrag@users.noreply.github.com>2020-10-21 21:44:19 +0300
committerStelios Fragkakis <52996999+stelfrag@users.noreply.github.com>2020-10-21 21:44:19 +0300
commitfb4d65e0af0a438a23f3ff7830cb4d31b166ce1a (patch)
tree07ef99cd72473322d0d448bb72b9eeeafd3c6314
parented682a7a200bc6f27e3567c48047ed483ccf6d0e (diff)
Fix first_entry properlycomposite-charts
-rw-r--r--web/api/queries/query.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/api/queries/query.c b/web/api/queries/query.c
index 8afd7539ab..91eec84651 100644
--- a/web/api/queries/query.c
+++ b/web/api/queries/query.c
@@ -1572,7 +1572,7 @@ RRDR *rrd2rrdr(
time_t first_entry_t;
time_t last_entry_t;
if (context_param_list) {
- first_entry_t = after_requested; //context_param_list->first_entry_t;
+ first_entry_t = context_param_list->first_entry_t;
last_entry_t = context_param_list->last_entry_t;
} else {
first_entry_t = rrdset_first_entry_t(st);