aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_disco.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-11-07 20:53:08 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-11-07 20:53:08 +0500
commite01f4792e9f0eddc0d24fa46e233d45b6f18a822 (patch)
tree8fd202c8e30ff47ee890c4fdfe4c27003e04c07d /plugins/mod_disco.lua
parentc6045f3c70bf31cb54f66af60e10e5e788256b10 (diff)
downloadprosody-e01f4792e9f0eddc0d24fa46e233d45b6f18a822.tar.gz
prosody-e01f4792e9f0eddc0d24fa46e233d45b6f18a822.zip
mod_disco: Renamed the 'session' property of the account-disco-info and account-disco-items events to 'origin' for consistency.
Diffstat (limited to 'plugins/mod_disco.lua')
-rw-r--r--plugins/mod_disco.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua
index 8bb0afec..9fc890ee 100644
--- a/plugins/mod_disco.lua
+++ b/plugins/mod_disco.lua
@@ -126,7 +126,7 @@ module:hook("iq/bare/http://jabber.org/protocol/disco#info:query", function(even
if not stanza.attr.to or is_contact_subscribed(username, module.host, jid_bare(stanza.attr.from)) then
local reply = st.reply(stanza):tag('query', {xmlns='http://jabber.org/protocol/disco#info'});
if not reply.attr.from then reply.attr.from = origin.username.."@"..origin.host; end -- COMPAT To satisfy Psi when querying own account
- module:fire_event("account-disco-info", { session = origin, stanza = reply });
+ module:fire_event("account-disco-info", { origin = origin, stanza = reply });
origin.send(reply);
return true;
end
@@ -140,7 +140,7 @@ module:hook("iq/bare/http://jabber.org/protocol/disco#items:query", function(eve
if not stanza.attr.to or is_contact_subscribed(username, module.host, jid_bare(stanza.attr.from)) then
local reply = st.reply(stanza):tag('query', {xmlns='http://jabber.org/protocol/disco#items'});
if not reply.attr.from then reply.attr.from = origin.username.."@"..origin.host; end -- COMPAT To satisfy Psi when querying own account
- module:fire_event("account-disco-items", { session = origin, stanza = reply });
+ module:fire_event("account-disco-items", { origin = origin, stanza = reply });
origin.send(reply);
return true;
end