plugins/mod_disco.lua

changeset 3695
d2c4856c7ed5
parent 3665
98b55c3a3deb
--- a/plugins/mod_disco.lua	Fri Dec 03 00:29:44 2010 +0500
+++ b/plugins/mod_disco.lua	Fri Dec 03 00:37:54 2010 +0500
@@ -115,7 +115,9 @@
 
 -- Handle caps stream feature
 module:hook("stream-features", function (event)
-	event.features:add_child(get_server_caps_feature());
+	if event.origin.type == "c2s" then
+		event.features:add_child(get_server_caps_feature());
+	end
 end);
 
 -- Handle disco requests to user accounts

mercurial