core/stanza_router.lua

changeset 3586
78ed7ad330ab
parent 3539
8bbd965267b2
child 3998
13a5a8df7c34
--- a/core/stanza_router.lua	Wed Nov 10 02:50:35 2010 +0500
+++ b/core/stanza_router.lua	Wed Nov 10 02:51:36 2010 +0500
@@ -12,7 +12,6 @@
 local tostring = tostring;
 local st = require "util.stanza";
 local send_s2s = require "core.s2smanager".send_to_host;
-local component_handle_stanza = require "core.componentmanager".handle_stanza;
 local jid_split = require "util.jid".split;
 local jid_prepped_split = require "util.jid".prepped_split;
 
@@ -172,11 +171,6 @@
 	if h then
 		if h.events.fire_event(stanza.name..to_type, event_data) then return; end -- do processing
 		if to_self and h.events.fire_event(stanza.name..'/self', event_data) then return; end -- do processing
-
-		if h.type == "component" then
-			component_handle_stanza(origin, stanza);
-			return;
-		end
 		handle_unhandled_stanza(h.host, origin, stanza);
 	else
 		core_route_stanza(origin, stanza);

mercurial