util.xml: Use variable instead of constant for consistency (thanks Thijs)

This commit is contained in:
Matthew Wild 2021-12-26 20:37:20 +00:00
parent f343cf5ba0
commit 5a1aa107c3

View file

@ -64,7 +64,7 @@ local parse_xml = (function()
function handler:EndElement()
stanza:up();
end
local parser = lxp.new(handler, "\1");
local parser = lxp.new(handler, ns_separator);
local ok, err, line, col = parser:parse(xml);
if ok then ok, err, line, col = parser:parse(); end
--parser:close();