util.serialization: Tighten up type checks

This commit is contained in:
Kim Alvefur 2018-07-29 00:17:41 +02:00
parent 760303fb27
commit 6eb0c63e0d

View file

@ -151,9 +151,9 @@ local function new(opt)
elseif mt then
tag = mt.__type;
end
if fr then
if type(fr) == "function" then
t = fr(t);
if tag then
if type(tag) == "string" then
o[l], l = tag, l + 1;
end
end