mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.error: Use is_error() instead of is_err() everywhere
Continuation of 4b39691a274e
This commit is contained in:
parent
ff05b0773d
commit
73b512d3a6
3 changed files with 9 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue