# HG changeset patch # User Waqas Hussain # Date 1223572775 -18000 # Node ID 6d66eb6b24cb32dec448db34716856e49821c374 # Parent da468ed49a7b4a4c332abedf32e6f92244504cc8 Fixed: util.stanza.deserialize now handles nil stanzas diff -r da468ed49a7b -r 6d66eb6b24cb util/stanza.lua --- a/util/stanza.lua Thu Oct 09 00:50:45 2008 +0100 +++ b/util/stanza.lua Thu Oct 09 22:19:35 2008 +0500 @@ -122,21 +122,23 @@ 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;