mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_pep_plus: Add missing variable
This commit is contained in:
parent
047dbc4feb
commit
de4181c741
1 changed files with 2 additions and 0 deletions
|
@ -359,9 +359,11 @@ module:hook("iq-result/bare/disco", function(event)
|
|||
|
||||
-- Process disco response
|
||||
local is_self = stanza.attr.to == nil;
|
||||
local user_bare = jid_bare(stanza.attr.to);
|
||||
local username = jid_split(stanza.attr.to);
|
||||
if is_self then
|
||||
username = origin.username;
|
||||
user_bare = jid_join(username, host);
|
||||
end
|
||||
local contact = stanza.attr.from;
|
||||
local current = recipients[username] and recipients[username][contact];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue