diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-11-28 02:05:52 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-11-28 02:05:52 +0500 |
commit | ba7e54b966d4bb5f383826f6d27dacce308dab23 (patch) | |
tree | 53fc7d172023345b540ef2de7d70d42c17d3e096 | |
parent | 1c99487d31e9fd5dd6b9973ca8a1a316c81b0959 (diff) | |
download | prosody-ba7e54b966d4bb5f383826f6d27dacce308dab23.tar.gz prosody-ba7e54b966d4bb5f383826f6d27dacce308dab23.zip |
mod_pep: Updated disco#info result handler to use new event name format.
-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 5d476645..b7f20f2b 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -208,7 +208,7 @@ module:hook("iq/bare/http://jabber.org/protocol/pubsub:pubsub", function(event) end end); -module:hook("iq/bare/disco", function(event) +module:hook("iq-result/bare/disco", function(event) local session, stanza = event.origin, event.stanza; if stanza.attr.type == "result" then local disco = stanza.tags[1]; |