Software /
code /
prosody
Diff
core/stanza_router.lua @ 1445:810037988642
stanza_router: Removed unnecessary xmlns check
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 29 Jun 2009 13:15:46 +0500 |
parent | 1444:19598161ae22 |
child | 1466:95f8024c77fc |
line wrap: on
line diff
--- a/core/stanza_router.lua Mon Jun 29 13:15:09 2009 +0500 +++ b/core/stanza_router.lua Mon Jun 29 13:15:46 2009 +0500 @@ -151,7 +151,7 @@ return; end if not modules_handle_stanza(h.host, origin, stanza) then - if stanza.attr.xmlns == "jabber:client" and stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then + if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then origin.send(st.error_reply(stanza, "cancel", "service-unavailable")); end end