diff options
author | Kim Alvefur <zash@zash.se> | 2016-12-15 13:24:53 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-12-15 13:24:53 +0100 |
commit | e920776f1d7ab7e0ea1e5d9eadbc7041cac38334 (patch) | |
tree | 799d47e674fd2b55dfc2e58692cf95b21f96a611 /plugins | |
parent | 90de22b946faec770a3acffb6b7744f4f6f9f9b0 (diff) | |
parent | aedd689b72629139390f23f4fbd002307d3a0fec (diff) | |
download | prosody-e920776f1d7ab7e0ea1e5d9eadbc7041cac38334.tar.gz prosody-e920776f1d7ab7e0ea1e5d9eadbc7041cac38334.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_disco.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua index 61749580..c9d4a9df 100644 --- a/plugins/mod_disco.lua +++ b/plugins/mod_disco.lua @@ -148,7 +148,7 @@ end); -- Handle caps stream feature module:hook("stream-features", function (event) - if event.origin.type == "c2s" then + if event.origin.type == "c2s" or event.origin.type == "c2s_unauthed" then event.features:add_child(get_server_caps_feature()); end end); |