mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
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:
parent
ca41268d26
commit
a3d8a25bdd
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ end
|
||||||
module:hook_global("stats-update", function ()
|
module:hook_global("stats-update", function ()
|
||||||
measure_upload_cache_size(upload_cache:count());
|
measure_upload_cache_size(upload_cache:count());
|
||||||
measure_quota_cache_size(quota_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);
|
measure_total_storage_usage(total_storage_usage);
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue