util.error: Use is_error() instead of is_err() everywhere

Continuation of 4b39691a274e
This commit is contained in:
Kim Alvefur 2024-10-29 14:10:02 +01:00
parent ff05b0773d
commit 73b512d3a6
3 changed files with 9 additions and 9 deletions

View file

@ -153,7 +153,7 @@ local function bounce_sendq(session, reason)
if session.had_stream then -- set when a stream is opened by the remote
error_type, condition = "wait", "remote-server-timeout";
end
if errors.is_err(reason) then
if errors.is_error(reason) then
error_type, condition, reason_text = reason.type, reason.condition, reason.text;
elseif type(reason) == "string" then
reason_text = reason;