mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.serialization: Use '=' prefix for chunk source description
Like in bd5e4485a245
This commit is contained in:
parent
09c19925cc
commit
8d941e5d0f
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ end
|
||||||
local function deserialize(str)
|
local function deserialize(str)
|
||||||
if type(str) ~= "string" then return nil; end
|
if type(str) ~= "string" then return nil; end
|
||||||
str = "return "..str;
|
str = "return "..str;
|
||||||
local f, err = envload(str, "@data", {});
|
local f, err = envload(str, "=serialized data", {});
|
||||||
if not f then return nil, err; end
|
if not f then return nil, err; end
|
||||||
local success, ret = pcall(f);
|
local success, ret = pcall(f);
|
||||||
if not success then return nil, ret; end
|
if not success then return nil, ret; end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue