mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.timer: Fix corner case of timer not repeating if it returns <= 0
This commit is contained in:
parent
662e7a289f
commit
3f7fda7079
1 changed files with 4 additions and 1 deletions
|
@ -32,7 +32,10 @@ if not event then
|
|||
if delay >= current_time then
|
||||
t_insert(new_data, {delay, func});
|
||||
else
|
||||
func();
|
||||
local r = func();
|
||||
if r and type(r) == "number" then
|
||||
return _add_task(r, func);
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue