mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Fixed: util.stanza.deserialize now handles nil stanzas
This commit is contained in:
parent
5ec7a9c8b4
commit
cbabb9cdb4
1 changed files with 13 additions and 11 deletions
|
@ -122,21 +122,23 @@ end
|
||||||
|
|
||||||
function deserialize(stanza)
|
function deserialize(stanza)
|
||||||
-- Set metatable
|
-- Set metatable
|
||||||
setmetatable(stanza, stanza_mt);
|
if stanza then
|
||||||
for _, child in ipairs(stanza) do
|
setmetatable(stanza, stanza_mt);
|
||||||
if type(child) == "table" then
|
|
||||||
deserialize(child);
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if not stanza.tags then
|
|
||||||
-- Rebuild tags
|
|
||||||
local tags = {};
|
|
||||||
for _, child in ipairs(stanza) do
|
for _, child in ipairs(stanza) do
|
||||||
if type(child) == "table" then
|
if type(child) == "table" then
|
||||||
t_insert(tags, child);
|
deserialize(child);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
stanza.tags = tags;
|
if not stanza.tags then
|
||||||
|
-- Rebuild tags
|
||||||
|
local tags = {};
|
||||||
|
for _, child in ipairs(stanza) do
|
||||||
|
if type(child) == "table" then
|
||||||
|
t_insert(tags, child);
|
||||||
|
end
|
||||||
|
end
|
||||||
|
stanza.tags = tags;
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return stanza;
|
return stanza;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue