mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Many things: switch from hacky multi-arg xpcall implementations to a standard util.xpcall
This commit is contained in:
parent
1454ac8208
commit
f5f6460b2e
7 changed files with 23 additions and 31 deletions
|
@ -9,7 +9,8 @@
|
|||
module:set_global();
|
||||
|
||||
local t_concat = table.concat;
|
||||
local xpcall, tostring, type = xpcall, tostring, type;
|
||||
local tostring, type = tostring, type;
|
||||
local xpcall = require "util.xpcall".xpcall;
|
||||
local traceback = debug.traceback;
|
||||
|
||||
local logger = require "util.logger";
|
||||
|
@ -238,7 +239,7 @@ function stream_callbacks.handlestanza(session, stanza)
|
|||
end
|
||||
|
||||
if stanza then
|
||||
return xpcall(function () return core_process_stanza(session, stanza) end, handleerr);
|
||||
return xpcall(core_process_stanza, handleerr, session, stanza);
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue