# HG changeset patch # User Matthew Wild # Date 1242494634 -3600 # Node ID 97ecfcec2d712652157f2ddd525f1b3daa227517 # Parent 2be14b7021b218483335743c2ea8bfd4997695c2 componentmanager: Don't error on stanzas to bare component JID diff -r 2be14b7021b2 -r 97ecfcec2d71 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]);