util.stanza: Verify that other objects added as children are valid strings

This commit is contained in:
Kim Alvefur 2018-06-08 17:06:21 +02:00
parent beac6ef1ea
commit 37344a42d8

View file

@ -137,8 +137,11 @@ end
function stanza_mt:add_direct_child(child)
if is_stanza(child) then
t_insert(self.tags, child);
t_insert(self, child);
else
check_text(child, "text");
t_insert(self, child);
end
t_insert(self, child);
end
function stanza_mt:add_child(child)