mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_storage_xep0227: treat roster metadata pseudo-entry correctly
The roster version is stored in a pseudo-item which has the key `false`. The if condition in the touched code attempts to guard against this, but it does not take into account that the jid prepping returns nil instead of false. By moving the jid prepping into the if, we can check for the metadata entry safely.
This commit is contained in:
parent
bb100ed33e
commit
91055b49bb
1 changed files with 1 additions and 1 deletions
|
@ -250,8 +250,8 @@ handlers.roster = {
|
|||
local roster = st.stanza("query", {xmlns='jabber:iq:roster'});
|
||||
usere:add_child(roster);
|
||||
for contact_jid, item in pairs(data) do
|
||||
contact_jid = jid_bare(jid_prep(contact_jid));
|
||||
if contact_jid ~= false then
|
||||
contact_jid = jid_bare(jid_prep(contact_jid));
|
||||
if contact_jid ~= user_jid then -- Skip self-contacts
|
||||
roster:tag("item", {
|
||||
jid = contact_jid,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue