mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.timer: Fix another variable name typo (thanks again zash).
This commit is contained in:
parent
053117d38d
commit
c782ef5a75
1 changed files with 2 additions and 2 deletions
|
@ -96,8 +96,8 @@ local function _on_timer(now)
|
|||
local _;
|
||||
_, _callback, _id = h:pop();
|
||||
_now = now;
|
||||
_param = params[id];
|
||||
params[id] = nil;
|
||||
_param = params[_id];
|
||||
params[_id] = nil;
|
||||
--item(now, id, _param); -- FIXME pcall
|
||||
local success, err = xpcall(_call, _traceback_handler);
|
||||
if success and type(err) == "number" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue