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:
Kim Alvefur 2020-05-02 20:41:35 +02:00
parent 95b5facf3b
commit 783f5430a5

View file

@ -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;