mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Wrapped a core_process_stanza call in an xpcall call
This commit is contained in:
parent
d0481af8e0
commit
32d1450b6f
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +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)
|
||||
session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
|
||||
session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr)); end
|
||||
end
|
||||
|
||||
connlisteners_register("xmppserver", xmppserver);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue