Mercurial > prosody-hg
diff plugins/mod_disco.lua @ 3818:1dc56141ffda
mod_disco: Don't add caps hash to stream features on unauthenticated connections.
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Fri, 03 Dec 2010 00:37:54 +0500 |
| parents | 1f9ab0fa77cc |
| children | a2ee8ab82dd9 |
line wrap: on
line diff
--- a/plugins/mod_disco.lua Fri Dec 03 00:29:44 2010 +0500 +++ b/plugins/mod_disco.lua Fri Dec 03 00:37:54 2010 +0500 @@ -115,7 +115,9 @@ -- Handle caps stream feature module:hook("stream-features", function (event) - event.features:add_child(get_server_caps_feature()); + if event.origin.type == "c2s" then + event.features:add_child(get_server_caps_feature()); + end end); -- Handle disco requests to user accounts
