diff options
author | Kim Alvefur <zash@zash.se> | 2018-05-28 21:30:32 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-05-28 21:30:32 +0200 |
commit | 26cd73ad688969a6fb0b13dbca633900fe04ad9f (patch) | |
tree | d7a4cb6a34f3cfc623cd2e133af261c3b918ddc6 /plugins | |
parent | 400d3337aa56b347069cb967a6e8547dc54a8a06 (diff) | |
download | prosody-26cd73ad688969a6fb0b13dbca633900fe04ad9f.tar.gz prosody-26cd73ad688969a6fb0b13dbca633900fe04ad9f.zip |
mod_disco: Skip code specific to disco on user accounts (avoids invoking usermanager, fixes #1150)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_disco.lua | 1 |
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 |