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 | 4ce8f255107391bc040fde22b153cfc0049fb3f9 (patch) | |
tree | 799d47e674fd2b55dfc2e58692cf95b21f96a611 /plugins | |
parent | 91d5ac9714bfd90120cbb3ce3bf1f378be0dd75c (diff) | |
parent | 0d486d4e0b3617e35e288cd524ceb09515c0c51d (diff) | |
download | prosody-4ce8f255107391bc040fde22b153cfc0049fb3f9.tar.gz prosody-4ce8f255107391bc040fde22b153cfc0049fb3f9.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); |