mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.timer: Use luaevent's built-in method of repeating an event (fixes a weird crash)
This commit is contained in:
parent
34e97d4a3c
commit
d7d5b34c60
1 changed files with 2 additions and 2 deletions
|
@ -55,10 +55,10 @@ if not event then
|
|||
else
|
||||
local EVENT_LEAVE = (event.core and event.core.LEAVE) or -1;
|
||||
function _add_task(delay, func)
|
||||
event_base:addevent(nil, event.EV_TIMEOUT, function ()
|
||||
event_base:addevent(nil, 0, function ()
|
||||
local ret = func();
|
||||
if ret then
|
||||
_add_task(ret, func);
|
||||
return 0, ret;
|
||||
else
|
||||
return EVENT_LEAVE;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue