componentmanager: Don't error on stanzas to bare component JID
authorMatthew Wild <mwild1@gmail.com>
Sat, 16 May 2009 18:23:54 +0100
changeset 1177 97ecfcec2d71
parent 1176 2be14b7021b2
child 1178 f332c033bfc8
componentmanager: Don't error on stanzas to bare component JID
core/componentmanager.lua
--- 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]);