diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-11-10 01:30:52 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-11-10 01:30:52 +0500 |
commit | 439b80fc6ee666302ecd7d7d50bdb9c5fa4e12cc (patch) | |
tree | 3c6fea78be15714a71dcc0d232443c596d5d502f | |
parent | bc83d650a03de76cad050fda72b1108924cb282b (diff) | |
download | prosody-439b80fc6ee666302ecd7d7d50bdb9c5fa4e12cc.tar.gz prosody-439b80fc6ee666302ecd7d7d50bdb9c5fa4e12cc.zip |
Hack to allow s2s stanzas to work until we do proper namespace handling
-rw-r--r-- | core/stanza_router.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 0a5ff0be..61c2dede 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -33,6 +33,7 @@ local print = print; function core_process_stanza(origin, stanza) log("debug", "Received["..origin.type.."]: "..tostring(st.reply(st.reply(stanza)))) + if not stanza.attr.xmlns then stanza.attr.xmlns = "jabber:client"; end -- FIXME Hack. This should be removed when we fix namespace handling. -- TODO verify validity of stanza (as well as JID validity) if stanza.name == "iq" and not(#stanza.tags == 1 and stanza.tags[1].attr.xmlns) then if stanza.attr.type == "set" or stanza.attr.type == "get" then |