Diff

plugins/mod_disco.lua @ 1704:9b445d2427e2

mod_disco: Rearranged some lines, and added a FIXME comment
author Waqas Hussain <waqas20@gmail.com>
date Tue, 18 Aug 2009 12:44:42 +0500
parent 1703:b062ee7865fc
child 2383:29a30884aadd
child 2923:b7049746bd29
line wrap: on
line diff
--- a/plugins/mod_disco.lua	Tue Aug 18 12:43:21 2009 +0500
+++ b/plugins/mod_disco.lua	Tue Aug 18 12:44:42 2009 +0500
@@ -7,12 +7,12 @@
 --
 
 local componentmanager_get_children = require "core.componentmanager".get_children;
+local st = require "util.stanza"
 
+module:add_identity("server", "im", "Prosody"); -- FIXME should be in the non-existing mod_router
 module:add_feature("http://jabber.org/protocol/disco#info");
 module:add_feature("http://jabber.org/protocol/disco#items");
 
-module:add_identity("server", "im", "Prosody");
-local st = require "util.stanza"
 module:hook("iq/host/http://jabber.org/protocol/disco#info:query", function(event)
 	local origin, stanza = event.origin, event.stanza;
 	if stanza.attr.type ~= "get" then return; end