Software /
code /
prosody
Diff
core/stanza_router.lua @ 279:76bad8b64018
Merging.
author | Tobias Markmann <tm@ayena.de> |
---|---|
date | Mon, 10 Nov 2008 16:29:19 +0100 |
parent | 237:c1e9b3f3f3a7 |
child | 249:1fc47cf5d144 |
line wrap: on
line diff
--- a/core/stanza_router.lua Mon Nov 10 16:28:15 2008 +0100 +++ b/core/stanza_router.lua Mon Nov 10 16:29:19 2008 +0100 @@ -33,6 +33,7 @@ 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 @@ -327,7 +328,7 @@ t_insert(recipients, session); end end - for _, session in pairs(recipient) do + for _, session in pairs(recipients) do session.send(stanza); end else