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 a0b5b349a6
commit 24e57b7590

View file

@ -66,9 +66,9 @@ end
local function check_text(text, text_type) local function check_text(text, text_type)
if type(text) ~= "string" then if type(text) ~= "string" then
error("invalid "..text_type.." value: expected string, got "..type(text)); 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"); 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"); error("invalid "..text_type.." value: contains invalid utf8");
end end
end end