util/stanza.lua
changeset 12144 1a4c61253932
parent 12142 644ca3583837
child 12410 a3ddf3f42212
child 12728 5b5b428d67e2
--- 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