mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_telnet: Use tostring as fallback in pretty printing
This has some nice effects such as functions, VirtualHosts and other things being printed using their `__tostring` metamethod.
This commit is contained in:
parent
95b5facf3b
commit
783f5430a5
1 changed files with 4 additions and 0 deletions
|
@ -335,6 +335,10 @@ function def_env.output:configure(opts)
|
|||
if type(opts) ~= "table" then
|
||||
opts = { preset = opts };
|
||||
end
|
||||
if not opts.fallback then
|
||||
-- XXX Error message passed to fallback is lost, does it matter?
|
||||
opts.fallback = tostring;
|
||||
end
|
||||
for k,v in pairs(serialize_defaults) do
|
||||
if opts[k] == nil then
|
||||
opts[k] = v;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue