certmanager: Remove debug logging accidentally committed
[prosody.git] / net / xmppserver_listener.lua
index d4283d9b05b6bd4669ccfc10b9fd62255fc8cd06..05e14a0f86d1358d3d52bda9d8e7fada46c5e7f7 100644 (file)
@@ -55,7 +55,7 @@ function stream_callbacks.handlestanza(session, stanza)
        end
        stanza = session.filter("stanzas/in", stanza);
        if stanza then
-               xpcall(function () core_process_stanza(session, stanza) end, handleerr);
+               return xpcall(function () return core_process_stanza(session, stanza) end, handleerr);
        end
 end