diff options
author | Kim Alvefur <zash@zash.se> | 2018-11-01 23:58:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-11-01 23:58:41 +0100 |
commit | 48162c5fca869aa8adefc5dc7e8a58bf1ce40c20 (patch) | |
tree | 36f1734138246b186d203c166883d065f2963744 | |
parent | 5e8c49f27039dc8ec154c723c8fbfe7fdafd59ca (diff) | |
download | prosody-48162c5fca869aa8adefc5dc7e8a58bf1ce40c20.tar.gz prosody-48162c5fca869aa8adefc5dc7e8a58bf1ce40c20.zip |
mod_pep: Remove incorrect features advertised on the bare host
-rw-r--r-- | plugins/mod_pep.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index 1d8c55bf..cb775fb5 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -250,9 +250,6 @@ end module:hook("iq/bare/"..xmlns_pubsub..":pubsub", handle_pubsub_iq); module:hook("iq/bare/"..xmlns_pubsub_owner..":pubsub", handle_pubsub_iq); -module:add_identity("pubsub", "pep", module:get_option_string("name", "Prosody")); -module:add_feature("http://jabber.org/protocol/pubsub#publish"); - local function get_caps_hash_from_presence(stanza, current) local t = stanza.attr.type; if not t then |