Fix a waqas copy/paste error. It was my fault again apparently.

This commit is contained in:
Matthew Wild 2008-11-26 22:18:26 +00:00
parent 44f9d3a29c
commit 7e9f14dae5

View file

@ -130,6 +130,7 @@ function xmppserver.register_outgoing(conn, session)
-- FIXME: Below function should be session,stanza - and xmlhandlers should use :method() notation to call,
-- this will avoid the useless indirection we have atm
-- (I'm on a mission, no time to fix now)
local function handleerr(err) print("Traceback:", err, debug.traceback()); end
session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr)); end
end