From 94692c20efb3c0edc09710f509c0c310e5c9d0c1 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sat, 14 Mar 2009 16:03:48 +0000 Subject: Don't reject some valid IQs. Thanks to elmex for spotting. --- core/stanza_router.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'core') diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 23b7a37d..f4d1ffac 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -51,11 +51,9 @@ function core_process_stanza(origin, 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.name == "iq" and #stanza.tags > 1 then if stanza.attr.type == "set" or stanza.attr.type == "get" then error("Invalid IQ"); - elseif #stanza.tags > 1 and not(stanza.attr.type == "error" or stanza.attr.type == "result") then - error("Invalid IQ"); end end -- cgit v1.2.3