util.stanza: Move misplaced argument to correct place

valid_utf8() takes only one argument, so the false was probably meant
to be valid_xml_cdata(text, attribute=false)
This commit is contained in:
Kim Alvefur 2020-12-24 17:57:28 +01:00
parent db3c36c69d
commit 7f7ec9e1ed

View file

@ -66,9 +66,9 @@ end
local function check_text(text, text_type)
if type(text) ~= "string" then
error("invalid "..text_type.." value: expected string, got "..type(text));
elseif not valid_xml_cdata(text) then
elseif not valid_xml_cdata(text, false) then
error("invalid "..text_type.." value: contains control characters");
elseif not valid_utf8(text, false) then
elseif not valid_utf8(text) then
error("invalid "..text_type.." value: contains invalid utf8");
end
end