mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.timer: Always pass the current time to timer callbacks.
This commit is contained in:
parent
b11eda0f96
commit
515d0ff00e
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ if not server.event then
|
|||
if delay >= current_time then
|
||||
t_insert(new_data, {delay, callback});
|
||||
else
|
||||
local r = callback();
|
||||
local r = callback(current_time);
|
||||
if r and type(r) == "number" then
|
||||
return _add_task(r, callback);
|
||||
end
|
||||
|
@ -67,7 +67,7 @@ else
|
|||
function _add_task(delay, callback)
|
||||
local event_handle;
|
||||
event_handle = event_base:addevent(nil, 0, function ()
|
||||
local ret = callback();
|
||||
local ret = callback(get_time());
|
||||
if ret then
|
||||
return 0, ret;
|
||||
elseif event_handle then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue