mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.stanza: Allow :text(nil) and :text("") as harmless nops
This commit is contained in:
parent
c7116e7ac8
commit
17500b46fb
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue