util.error: Pass through existing error objects passed to new()

This commit is contained in:
Matthew Wild 2020-10-15 13:43:03 +01:00
parent 7672305919
commit 58e33e3995

View file

@ -35,6 +35,7 @@ end
-- What to set `type` to for stream errors or SASL errors? Those don't have a 'type' attr.
local function new(e, context, registry, source)
if is_err(e) then return e; end
local template = registry and registry[e];
if not template then
if type(e) == "table" then