mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
plugins: Handle how get_option_period returns "never"
This commit is contained in:
parent
91d95d4c33
commit
99cca59d6e
3 changed files with 4 additions and 4 deletions
|
@ -441,7 +441,7 @@ local function message_handler(event, c2s)
|
|||
local time = time_now();
|
||||
local ok, err = archive:append(store_user, nil, clone_for_storage, time, with);
|
||||
if not ok and err == "quota-limit" then
|
||||
if type(cleanup_after) == "number" then
|
||||
if cleanup_after ~= math.huge then
|
||||
module:log("debug", "User '%s' over quota, cleaning archive", store_user);
|
||||
local cleaned = archive:delete(store_user, {
|
||||
["end"] = (os.time() - cleanup_after);
|
||||
|
@ -506,7 +506,7 @@ module:hook("message/offline/broadcast", function (event)
|
|||
end
|
||||
end);
|
||||
|
||||
if cleanup_after ~= "never" then
|
||||
if cleanup_after ~= math.huge then
|
||||
local cleanup_storage = module:open_store("archive_cleanup");
|
||||
local cleanup_map = module:open_store("archive_cleanup", "map");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue