mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Let freeze metamethod return a literal string
Enables custom serialization, such as creating a datatype that serializes into a variable reference.
This commit is contained in:
parent
534435a9d0
commit
b93e90ebb3
1 changed files with 4 additions and 0 deletions
|
@ -150,6 +150,10 @@ local function new(opt)
|
|||
|
||||
if type(fr) == "function" then
|
||||
t = fr(t);
|
||||
if type(t) == "string" then
|
||||
o[l], l = t, l + 1;
|
||||
return l;
|
||||
end
|
||||
if type(tag) == "string" then
|
||||
o[l], l = tag, l + 1;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue