diff options
author | IRON <iron.udjin@gmail.com> | 2012-07-25 19:04:42 +0300 |
---|---|---|
committer | IRON <iron.udjin@gmail.com> | 2012-07-25 19:04:42 +0300 |
commit | e88f73a9dbc3f73c2bd3ceb76ce67176a003b15b (patch) | |
tree | eb4e4c60f55105cb6b0b7cfba635c0d48f30433c /plugins | |
parent | 33028346c45ee60697a7114ceb8ba5f348b14707 (diff) | |
download | prosody-e88f73a9dbc3f73c2bd3ceb76ce67176a003b15b.tar.gz prosody-e88f73a9dbc3f73c2bd3ceb76ce67176a003b15b.zip |
mod_pep: Allow configurable service discovery identity (Fix)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pep.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index 5a6196f2..d6fe9a81 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -32,7 +32,7 @@ module.restore = function(state) hash_map = state.hash_map or {}; end -module:add_identity("pubsub", "pep", "pep", module:get_option_string("name", "Prosody")); +module:add_identity("pubsub", "pep", module:get_option_string("name", "Prosody")); module:add_feature("http://jabber.org/protocol/pubsub#publish"); local function subscription_presence(user_bare, recipient) |