diff -r 97ecfcec2d71 -r f332c033bfc8 core/stanza_router.lua --- a/core/stanza_router.lua Sat May 16 18:23:54 2009 +0100 +++ b/core/stanza_router.lua Sat May 16 20:19:15 2009 +0100 @@ -47,7 +47,9 @@ function core_process_stanza(origin, stanza) (origin.log or log)("debug", "Received[%s]: %s", origin.type, stanza:top_tag()) - if not stanza.attr.xmlns then stanza.attr.xmlns = "jabber:client"; end -- FIXME Hack. This should be removed when we fix namespace handling. + -- Currently we guarantee every stanza to have an xmlns, should we keep this rule? + if not stanza.attr.xmlns then stanza.attr.xmlns = "jabber:client"; end + -- TODO verify validity of stanza (as well as JID validity) if stanza.attr.type == "error" and #stanza.tags == 0 then return; end -- TODO invalid stanza, log if stanza.name == "iq" then