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,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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue