mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_disco: Renamed the 'session' property of the account-disco-info and account-disco-items events to 'origin' for consistency.
This commit is contained in:
parent
c6045f3c70
commit
e01f4792e9
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue