util.stanza: Allow :text(nil) and :text("") as harmless nops

This commit is contained in:
Matthew Wild 2018-03-21 22:04:20 +00:00
parent c7116e7ac8
commit 17500b46fb

View file

@ -111,9 +111,11 @@ function stanza_mt:tag(name, attr, namespaces)
end
function stanza_mt:text(text)
check_text(text, "text");
local last_add = self.last_add;
(last_add and last_add[#last_add] or self):add_direct_child(text);
if text ~= nil and text ~= "" then
check_text(text, "text");
local last_add = self.last_add;
(last_add and last_add[#last_add] or self):add_direct_child(text);
end
return self;
end