mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.stanza: Verify that other objects added as children are valid strings
This commit is contained in:
parent
beac6ef1ea
commit
37344a42d8
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue