mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: Split out some variables for later reuse
This commit is contained in:
parent
55cb283433
commit
12a72e28dc
1 changed files with 3 additions and 1 deletions
|
@ -70,7 +70,9 @@ end
|
|||
|
||||
-- TODO cache
|
||||
function get_daily_quota(uploader)
|
||||
local iter, err = uploads:find(nil, {with = uploader; start = os.time() - 86400});
|
||||
local now = os.time();
|
||||
local max_age = now - 86400;
|
||||
local iter, err = uploads:find(nil, {with = uploader; start = max_age });
|
||||
if not iter then return iter, err; end
|
||||
local total_bytes = 0;
|
||||
for _, slot in iter do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue