Diff

plugins/mod_disco.lua @ 3600:c888328ae6b3

mod_disco: Updated to use hostmanager.get_children instead of componentmanager.get_children.
author Waqas Hussain <waqas20@gmail.com>
date Wed, 10 Nov 2010 20:31:28 +0500
parent 3572:fb7fc154a56a
child 3665:98b55c3a3deb
line wrap: on
line diff
--- a/plugins/mod_disco.lua	Wed Nov 10 20:28:20 2010 +0500
+++ b/plugins/mod_disco.lua	Wed Nov 10 20:31:28 2010 +0500
@@ -6,7 +6,7 @@
 -- COPYING file in the source package for more information.
 --
 
-local componentmanager_get_children = require "core.componentmanager".get_children;
+local get_children = require "core.hostmanager".get_children;
 local is_contact_subscribed = require "core.rostermanager".is_contact_subscribed;
 local jid_split = require "util.jid".split;
 local jid_bare = require "util.jid".bare;
@@ -101,7 +101,7 @@
 	if node and node ~= "" then return; end -- TODO fire event?
 
 	local reply = st.reply(stanza):query("http://jabber.org/protocol/disco#items");
-	for jid in pairs(componentmanager_get_children(module.host)) do
+	for jid in pairs(get_children(module.host)) do
 		reply:tag("item", {jid = jid}):up();
 	end
 	for _, item in ipairs(disco_items) do