diff options
author | Kim Alvefur <zash@zash.se> | 2020-09-26 23:17:53 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-09-26 23:17:53 +0200 |
commit | b93e90ebb3df8770e783318443baa3bafd9652d2 (patch) | |
tree | b0a8aebc274f33088b57289dcd318f2c841bfe28 | |
parent | 534435a9d00e7389067ec6654a9afc3dc5c187ed (diff) | |
download | prosody-b93e90ebb3df8770e783318443baa3bafd9652d2.tar.gz prosody-b93e90ebb3df8770e783318443baa3bafd9652d2.zip |
util.serialization: Let freeze metamethod return a literal string
Enables custom serialization, such as creating a datatype that
serializes into a variable reference.
-rw-r--r-- | util/serialization.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/serialization.lua b/util/serialization.lua index d70e92ba..d310a3e8 100644 --- a/util/serialization.lua +++ b/util/serialization.lua @@ -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 |