aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_disco.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-12-15 07:03:52 +0100
committerKim Alvefur <zash@zash.se>2016-12-15 07:03:52 +0100
commit0d486d4e0b3617e35e288cd524ceb09515c0c51d (patch)
tree9d3cee3ae98b7b0eefe93cb64f207138b77f1121 /plugins/mod_disco.lua
parent6e0fc36aff25f393c4f338f8c66dfd300b109e6f (diff)
downloadprosody-0d486d4e0b3617e35e288cd524ceb09515c0c51d.tar.gz
prosody-0d486d4e0b3617e35e288cd524ceb09515c0c51d.zip
mod_disco: Update to account for new intermediate session type (from 9f70d35a1602)
Diffstat (limited to 'plugins/mod_disco.lua')
-rw-r--r--plugins/mod_disco.lua2
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);