mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Wrap tostring() output in {} (otherwise empty arrays print as "").
This commit is contained in:
parent
39229adf0b
commit
11684a2d6c
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ local tostring = tostring;
|
|||
local array = {};
|
||||
local array_base = {};
|
||||
local array_methods = {};
|
||||
local array_mt = { __index = array_methods, __tostring = function (array) return array:concat(", "); end };
|
||||
local array_mt = { __index = array_methods, __tostring = function (array) return "{"..array:concat(", ").."}"; end };
|
||||
|
||||
local function new_array(self, t, _s, _var)
|
||||
if type(t) == "function" then -- Assume iterator
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue