mod_http_file_share: Fix measuring total storage use before it was known

Passing nil to the metrics system causes errors later.
This commit is contained in:
Kim Alvefur 2021-12-03 08:16:18 +01:00
parent ca41268d26
commit a3d8a25bdd

View file

@ -78,7 +78,7 @@ end
module:hook_global("stats-update", function ()
measure_upload_cache_size(upload_cache:count());
measure_quota_cache_size(quota_cache:count());
if total_storage_limit then
if total_storage_limit and total_storage_usage then
measure_total_storage_usage(total_storage_usage);
end
end);