mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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)
|
||||
-- Set metatable
|
||||
setmetatable(stanza, stanza_mt);
|
||||
for _, child in ipairs(stanza) do
|
||||
if type(child) == "table" then
|
||||
deserialize(child);
|
||||
end
|
||||
end
|
||||
if not stanza.tags then
|
||||
-- Rebuild tags
|
||||
local tags = {};
|
||||
if stanza then
|
||||
setmetatable(stanza, stanza_mt);
|
||||
for _, child in ipairs(stanza) do
|
||||
if type(child) == "table" then
|
||||
t_insert(tags, child);
|
||||
deserialize(child);
|
||||
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
|
||||
|
||||
return stanza;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue