Software /
code /
prosody
Diff
core/modulemanager.lua @ 608:3758af511ce8
Don't try processing stanzas not of type get or set in module manager
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 08 Dec 2008 21:06:41 +0500 |
parent | 592:c6e2c727d0cc |
child | 615:4ae3e81513f3 |
line wrap: on
line diff
--- a/core/modulemanager.lua Mon Dec 08 07:41:29 2008 +0500 +++ b/core/modulemanager.lua Mon Dec 08 21:06:41 2008 +0500 @@ -123,8 +123,13 @@ function handle_stanza(host, origin, stanza) local name, xmlns, origin_type = stanza.name, stanza.attr.xmlns, origin.type; if name == "iq" and xmlns == "jabber:client" then - xmlns = stanza.tags[1].attr.xmlns; - log("debug", "Stanza of type %s from %s has xmlns: %s", name, origin_type, xmlns); + if stanza.attr.type == "get" or stanza.attr.type == "set" then + xmlns = stanza.tags[1].attr.xmlns; + log("debug", "Stanza of type %s from %s has xmlns: %s", name, origin_type, xmlns); + else + log("debug", "Discarding %s from %s of type: %s", name, origin_type, stanza.attr.type); + return true; + end end local handlers = stanza_handlers:get(host, origin_type, name, xmlns); if handlers then