mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Tighten up type checks
This commit is contained in:
parent
760303fb27
commit
6eb0c63e0d
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue