Fixed: util.stanza.deserialize now handles nil stanzas

This commit is contained in:
Waqas Hussain 2008-10-09 22:19:35 +05:00
parent 5ec7a9c8b4
commit cbabb9cdb4

View file

@ -122,6 +122,7 @@ end
function deserialize(stanza)
-- Set metatable
if stanza then
setmetatable(stanza, stanza_mt);
for _, child in ipairs(stanza) do
if type(child) == "table" then
@ -138,6 +139,7 @@ function deserialize(stanza)
end
stanza.tags = tags;
end
end
return stanza;
end