mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_private: Fix traceback due to missing table index
This commit is contained in:
parent
7315c5156d
commit
44a989459c
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ module:hook("iq/self/jabber:iq:private:query", function(event)
|
|||
end
|
||||
if stanza.attr.type == "get" then
|
||||
if data and data[key] then
|
||||
return origin.send(st.reply(stanza):query("jabber:iq:private"):add_child(st.deserialize(data)));
|
||||
return origin.send(st.reply(stanza):query("jabber:iq:private"):add_child(st.deserialize(data[key])));
|
||||
else
|
||||
return origin.send(st.reply(stanza):add_child(query));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue