diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-09 13:45:53 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-09 13:45:53 +0200 |
commit | 28ea139bbb261257bf48ab0ef606ea39ba520e71 (patch) | |
tree | 2422227d84429703d68e30678d5cfa320e422ea6 /plugins | |
parent | 3f2049414ae3ffea31a644444676ec7cd38dda58 (diff) | |
download | prosody-28ea139bbb261257bf48ab0ef606ea39ba520e71.tar.gz prosody-28ea139bbb261257bf48ab0ef606ea39ba520e71.zip |
mod_pep_plus: Add missing variable
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pep_plus.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_pep_plus.lua b/plugins/mod_pep_plus.lua index 7d4064df..09c9d07d 100644 --- a/plugins/mod_pep_plus.lua +++ b/plugins/mod_pep_plus.lua @@ -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]; |