mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
util.async: Use wrapper for once runner (thanks luacheck)
This commit is contained in:
parent
c0912560a4
commit
1ca1c9bb32
2 changed files with 2 additions and 1 deletions
|
@ -231,7 +231,7 @@ do
|
|||
};
|
||||
local function once_runner(func) func(); end
|
||||
function once(func)
|
||||
local r = runner(func, once_watchers);
|
||||
local r = runner(once_runner, once_watchers);
|
||||
return r:run(func);
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue