core/componentmanager.lua

changeset 1177
97ecfcec2d71
parent 1168
dd523bfc9ea9
child 1188
fa48e69c4786
--- a/core/componentmanager.lua	Sat May 16 12:01:44 2009 +0100
+++ b/core/componentmanager.lua	Sat May 16 18:23:54 2009 +0100
@@ -67,8 +67,10 @@
 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]);

mercurial