Diff

util/stanza.lua @ 12140:1a4c61253932

util.stanza: Remove dead code These cases are caught by `check_text(v, ..)` above. Those errors do not contain the attribute however, which would have been nice.
author Kim Alvefur <zash@zash.se>
date Fri, 31 Dec 2021 14:01:12 +0100
parent 12138:644ca3583837
child 12406:a3ddf3f42212
child 12724:5b5b428d67e2
line wrap: on
line diff
--- a/util/stanza.lua	Fri Dec 31 14:00:28 2021 +0100
+++ b/util/stanza.lua	Fri Dec 31 14:01:12 2021 +0100
@@ -70,11 +70,6 @@
 		for k, v in pairs(attr) do
 			check_name(k, "attribute");
 			check_text(v, "attribute");
-			if type(v) ~= "string" then
-				error("invalid attribute value for '"..k.."': expected string, got "..type(v));
-			elseif not valid_utf8(v) then
-				error("invalid attribute value for '"..k.."': contains invalid utf8");
-			end
 		end
 	end
 end