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 | 41ccb42d862b7ca48a3de4547c2bb4ba2853ac1c (patch) | |
tree | e6d68466d9411481704bd37e2913dd8ca6daaa31 /plugins/mod_pep.lua | |
parent | 9ded5636847cb6cfe62e81f47494cd46e5612c8f (diff) | |
download | prosody-41ccb42d862b7ca48a3de4547c2bb4ba2853ac1c.tar.gz prosody-41ccb42d862b7ca48a3de4547c2bb4ba2853ac1c.zip |
mod_pep: Updated disco#info result handler to use new event name format.
Diffstat (limited to 'plugins/mod_pep.lua')
-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]; |