Software /
code /
prosody
Changeset
431:3c89a073db53
Fix a waqas copy/paste error. It was my fault again apparently.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 26 Nov 2008 22:18:26 +0000 |
parents | 430:f9b43bb9d807 |
children | 432:fb19a5c14d44 |
files | net/xmppserver_listener.lua |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/net/xmppserver_listener.lua Wed Nov 26 21:49:17 2008 +0000 +++ b/net/xmppserver_listener.lua Wed Nov 26 22:18:26 2008 +0000 @@ -130,6 +130,7 @@ -- 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