aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-16 18:23:54 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-16 18:23:54 +0100
commitd18374c137186bea7b8675aa357cc492a1c95fe1 (patch)
treee553733e942fb89e2dd89c72ef754a0b70a533a8 /core
parent3b686ad3be847fdfe76bfb674267df2ccf84aba5 (diff)
downloadprosody-d18374c137186bea7b8675aa357cc492a1c95fe1.tar.gz
prosody-d18374c137186bea7b8675aa357cc492a1c95fe1.zip
componentmanager: Don't error on stanzas to bare component JID
Diffstat (limited to 'core')
-rw-r--r--core/componentmanager.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/componentmanager.lua b/core/componentmanager.lua
index d2a8d9f6..2053bff4 100644
--- a/core/componentmanager.lua
+++ b/core/componentmanager.lua
@@ -67,8 +67,10 @@ eventmanager.add_event_hook("server-starting", load_enabled_components);
function handle_stanza(origin, stanza)
local node, host = jid_split(stanza.attr.to);
local component = nil;
- if not component then component = components[node.."@"..host]; end -- hack to allow hooking node@server
- if not component then component = components[host]; end
+ if host then
+ if node then component = components[node.."@"..host]; end -- hack to allow hooking node@server
+ if not component then component = components[host]; end
+ end
if component then
log("debug", "%s stanza being handled by component: %s", stanza.name, host);
component(origin, stanza, hosts[host]);