aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-05-30 21:40:00 +0100
committerMatthew Wild <mwild1@gmail.com>2018-05-30 21:40:00 +0100
commit1631718aece40346c43de30d6b6e21f914a96154 (patch)
tree3235994b414943a51a3bd119095af21bc4ad8c51
parentc5a2a6eda354b5eedd8e437bb334df1c15de48e7 (diff)
parent0fd614dbab5caba118f3037f94e3beb8472c1a97 (diff)
downloadprosody-1631718aece40346c43de30d6b6e21f914a96154.tar.gz
prosody-1631718aece40346c43de30d6b6e21f914a96154.zip
Merge 0.10->trunk
-rw-r--r--plugins/mod_disco.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua
index cd07934f..6d3e7753 100644
--- a/plugins/mod_disco.lua
+++ b/plugins/mod_disco.lua
@@ -154,6 +154,7 @@ module:hook("stream-features", function (event)
end);
-- Handle disco requests to user accounts
+if module:get_host_type() ~= "local" then return end -- skip for components
module:hook("iq/bare/http://jabber.org/protocol/disco#info:query", function(event)
local origin, stanza = event.origin, event.stanza;
if stanza.attr.type ~= "get" then return; end