diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-23 05:49:08 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-23 05:49:08 +0000 |
commit | 6db47b60f4574bc8e5a34eacac8a67ccd52107dd (patch) | |
tree | 6f3256e2c07bc9507b7cbcc9b1e110cc44fa752c /core | |
parent | 37c659a35c38d7302d24f80d72cb5b7c3bf4100a (diff) | |
parent | f80397b3b84bd417676b799a3600b966f2944d38 (diff) | |
download | prosody-6db47b60f4574bc8e5a34eacac8a67ccd52107dd.tar.gz prosody-6db47b60f4574bc8e5a34eacac8a67ccd52107dd.zip |
Merge from waqas
Diffstat (limited to 'core')
-rw-r--r-- | core/modulemanager.lua | 4 |
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 |