aboutsummaryrefslogtreecommitdiffstats
path: root/core/modulemanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-23 05:49:08 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-23 05:49:08 +0000
commit6db47b60f4574bc8e5a34eacac8a67ccd52107dd (patch)
tree6f3256e2c07bc9507b7cbcc9b1e110cc44fa752c /core/modulemanager.lua
parent37c659a35c38d7302d24f80d72cb5b7c3bf4100a (diff)
parentf80397b3b84bd417676b799a3600b966f2944d38 (diff)
downloadprosody-6db47b60f4574bc8e5a34eacac8a67ccd52107dd.tar.gz
prosody-6db47b60f4574bc8e5a34eacac8a67ccd52107dd.zip
Merge from waqas
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r--core/modulemanager.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index b0fb6cd9..d313130c 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -92,8 +92,8 @@ function handle_stanza(origin, stanza)
if child then
local xmlns = child.attr.xmlns or xmlns;
log("debug", "Stanza of type %s from %s has xmlns: %s", name, origin_type, xmlns);
- local handler = handlers[origin_type][name][xmlns];
- if handler then
+ local handler = handlers[origin_type][name] and handlers[origin_type][name][xmlns];
+ if handler then
log("debug", "Passing stanza to mod_%s", handler_info[handler].name);
return handler(origin, stanza) or true;
end