diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-12 00:52:18 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-12 00:52:18 +0200 |
commit | e2321c4d37d4bc08536072799f525910ea4395bf (patch) | |
tree | 8e5a660994a62c814ce8258d5002f2fd9857652c | |
parent | 1ab9729aacb29265bd611c597f1b607d49e269a2 (diff) | |
download | prosody-e2321c4d37d4bc08536072799f525910ea4395bf.tar.gz prosody-e2321c4d37d4bc08536072799f525910ea4395bf.zip |
util.stanza: Set preserialize as freeze metamethod
-rw-r--r-- | util/stanza.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/stanza.lua b/util/stanza.lua index 79522ed5..85c89d43 100644 --- a/util/stanza.lua +++ b/util/stanza.lua @@ -359,6 +359,8 @@ local function preserialize(stanza) return s; end +stanza_mt.__freeze = preserialize; + local function deserialize(stanza) -- Set metatable if stanza then |