mod_private: Fix traceback due to missing table index

This commit is contained in:
Kim Alvefur 2014-08-13 19:19:34 +02:00
parent 7315c5156d
commit 44a989459c

View file

@ -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