mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Stricter type check
This commit is contained in:
parent
94b922ba3f
commit
ed7c24bd0d
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ local function new(opt)
|
|||
if freeze then
|
||||
-- opportunity to do pre-serialization
|
||||
local mt = getmetatable(t);
|
||||
local fr = (freeze ~= true and freeze[mt]);
|
||||
local fr = (type(freeze) == "table" and freeze[mt]);
|
||||
local mf = mt and mt.__freeze;
|
||||
local tag;
|
||||
if type(fr) == "string" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue