diff options
author | Kim Alvefur <zash@zash.se> | 2017-07-27 14:10:18 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-07-27 14:10:18 +0200 |
commit | 4531d4411c11145249082a9fa8e3245d4cff03b4 (patch) | |
tree | e34fedad1e4a3fdcefe46b2e4074b5fabf3ce54a /plugins/mod_disco.lua | |
parent | a3a0b35522181ad8aece56b6e87ce9552681d9d9 (diff) | |
download | prosody-4531d4411c11145249082a9fa8e3245d4cff03b4.tar.gz prosody-4531d4411c11145249082a9fa8e3245d4cff03b4.zip |
mod_disco: Advertise in stream-features after auth (probably what was meant in 200f1f6306a7) (fixes #957)
Diffstat (limited to 'plugins/mod_disco.lua')
-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 10eb632d..cd07934f 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" or event.origin.type == "c2s_unauthed" then + if event.origin.type == "c2s" or event.origin.type == "c2s_unbound" then event.features:add_child(get_server_caps_feature()); end end); |