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 | a0767a636b5f8c0ece52a4cd7ed6dca464f63074 (patch) | |
tree | d7a4cb6a34f3cfc623cd2e133af261c3b918ddc6 | |
parent | 5b0c75379e205e33a24efa674da250d5ac3f7c47 (diff) | |
download | prosody-a0767a636b5f8c0ece52a4cd7ed6dca464f63074.tar.gz prosody-a0767a636b5f8c0ece52a4cd7ed6dca464f63074.zip |
mod_disco: Skip code specific to disco on user accounts (avoids invoking usermanager, fixes #1150)
-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 |