aboutsummaryrefslogtreecommitdiffstats
path: root/core/modulemanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-23 05:03:36 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-23 05:03:36 +0000
commitb94fd79634deabef5f4761825495e0940aec0ac6 (patch)
treebe1d302b3f7e9e812e294b95cad8750e1a690ac6 /core/modulemanager.lua
parent21df2699e2ffd587a014c9c345ca1161d6a4fc5c (diff)
parent43c503330db3d5b1613c1babcd5ef150d2ccf247 (diff)
downloadprosody-b94fd79634deabef5f4761825495e0940aec0ac6.tar.gz
prosody-b94fd79634deabef5f4761825495e0940aec0ac6.zip
Merge from waqas
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r--core/modulemanager.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index 783fea55..f4893089 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -92,15 +92,15 @@ 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
end
elseif handlers[origin_type] then
local handler = handlers[origin_type][name];
- if handler then
+ if handler then
handler = handler[xmlns];
if handler then
log("debug", "Passing stanza to mod_%s", handler_info[handler].name);