mod_admin_shell: Fix traceback on rendering graph of stats without extra labels

Stops an error when extra_labels is nil since it attempts to index it

Unsure about correctness
This commit is contained in:
Kim Alvefur 2022-01-29 15:01:38 +01:00
parent d9f7b26328
commit 46ad556ca0

View file

@ -1653,7 +1653,7 @@ function stats_methods:render_single_fancy_histogram_ex(print, prefix, metric_fa
sum = value
elseif suffix == "_count" then
count = value
else
elseif extra_labels then
local bucket_threshold = extra_labels["le"]
local bucket_count
if cumulative then